mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
20 lines
340 B
PHP
20 lines
340 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DeliveryArrangement extends Model
|
|
{
|
|
protected $table = 'delivery_arrangements';
|
|
|
|
protected $fillable = [
|
|
'order_id', 'type', 'vehicle_no'
|
|
];
|
|
|
|
public function order()
|
|
{
|
|
return $this->belongsTo(Order::class, 'order_id');
|
|
}
|
|
}
|