Files
alliance-services/app/Models/Reports/AfterActionReport.php
2026-03-10 02:10:28 -05:00

37 lines
653 B
PHP

<?php
namespace App\Models\Reports;
use Illuminate\Database\Eloquent\Model;
class AfterActionReport extends Model
{
// Table Name
protected $table = 'after_action_reports';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'fc_id',
'fc_name',
'formup_time',
'formup_location',
'doctrine',
'objective',
'result',
'summary',
'improvements',
'worked_well',
'additional_comments',
];
}