34 lines
649 B
PHP
34 lines
649 B
PHP
<?php
|
|
|
|
namespace App\Models\AfterActionReports;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AfterActionReportComment extends Model
|
|
{
|
|
//Table Name
|
|
public $table = 'fc_aar_comments';
|
|
|
|
//Primary Key
|
|
public $primaryKey = 'id';
|
|
|
|
//Timestamps
|
|
public $timestamps = true;
|
|
|
|
/**
|
|
* The attributes that are mass assignable
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'report_id',
|
|
'character_id',
|
|
'character_name',
|
|
'comments',
|
|
];
|
|
|
|
public function report() {
|
|
$this->belongsTo(App\Models\AfterActionReports\AfterActionReport::class, 'id', 'report_id');
|
|
}
|
|
}
|