account section

This commit is contained in:
Abhishek Mali
2025-11-21 16:07:43 +05:30
parent 63daef6a92
commit 6e1ae8f380
17 changed files with 1633 additions and 1001 deletions

View File

@@ -39,4 +39,11 @@ class Order extends Model
{
return $this->hasOne(MarkList::class, 'mark_no', 'mark_no');
}
public function entries()
{
return $this->belongsToMany(Entry::class, 'entry_order', 'order_id', 'entry_id')
->withTimestamps();
}
}