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