|
- <?php
-
- namespace App\Models;
-
- use Framework\Database\Model;
-
- class StockMovement extends Model
- {
- protected string $table = 'stock_movements';
-
- public function item(): mixed
- {
- return $this->belongsTo(Item::class, 'item_id');
- }
-
- public function location(): mixed
- {
- return $this->belongsTo(Location::class, 'location_id');
- }
-
- public function user(): mixed
- {
- return $this->belongsTo(User::class, 'user_id');
- }
- }
|