mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-21 21:44:14 +00:00
Major incomplete Change
This commit is contained in:
@@ -3,21 +3,16 @@
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Spatie\Activitylog\Traits\LogsActivity;
|
||||
|
||||
class ReceiveNote extends Model
|
||||
{
|
||||
|
||||
use LogsActivity;
|
||||
|
||||
protected $table = 'receive_notes';
|
||||
|
||||
protected $fillable = [
|
||||
'order_id', 'tracking_no', 'receive_date'
|
||||
];
|
||||
|
||||
protected static $logFillable = true;
|
||||
|
||||
public function order()
|
||||
{
|
||||
return $this->belongsTo(Order::class, 'order_id');
|
||||
|
||||
Reference in New Issue
Block a user