37 lines
653 B
PHP
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',
|
|
];
|
|
}
|