mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-25 07:23:57 +00:00
Major incomplete Change
This commit is contained in:
@@ -2,22 +2,15 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Spatie\Activitylog\Traits\LogsActivity;
|
||||
|
||||
class OrderStep extends Model
|
||||
class OrderStep extends AbstractModel
|
||||
{
|
||||
|
||||
use LogsActivity;
|
||||
|
||||
protected $table = 'order_steps';
|
||||
|
||||
protected $fillable = [
|
||||
'order_id', 'reference_id', 'primary', 'sequence', 'complete'
|
||||
];
|
||||
|
||||
protected static $logFillable = true;
|
||||
|
||||
public function order()
|
||||
{
|
||||
return $this->belongsTo(Order::class, 'order_id');
|
||||
|
||||
Reference in New Issue
Block a user