mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-20 21:14:12 +00:00
26 lines
453 B
PHP
26 lines
453 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Spatie\Activitylog\Traits\LogsActivity;
|
|
|
|
class CustomIssues extends Model
|
|
{
|
|
|
|
use LogsActivity;
|
|
|
|
protected $table = 'custom_issues';
|
|
|
|
protected $fillable = [
|
|
'schedule_id', 'remark'
|
|
];
|
|
|
|
protected static $logFillable = true;
|
|
|
|
public function shippingSchedule()
|
|
{
|
|
return $this->belongsTo(ShippingSchedule::class, 'schedule_id');
|
|
}
|
|
}
|