mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim-api.git
synced 2026-08-24 15:04:24 +00:00
23 lines
334 B
PHP
23 lines
334 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Customexam extends Model
|
|
{
|
|
protected $fillable = [
|
|
'id',
|
|
'so_id',
|
|
'custom_date',
|
|
'new_etd',
|
|
'new_eta',
|
|
'release_date',
|
|
];
|
|
|
|
public function so()
|
|
{
|
|
return $this->hasOne('App\Shipment');
|
|
}
|
|
}
|