24 lines
389 B
PHP
24 lines
389 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class SupplyTransaction extends BaseModel
|
|
{
|
|
protected $table = 'supply_transactions';
|
|
|
|
protected $fillable = [
|
|
'supply_id',
|
|
'type',
|
|
'quantity',
|
|
'ref',
|
|
'issued_to',
|
|
'issued_by',
|
|
'notes',
|
|
];
|
|
|
|
protected $casts = [
|
|
'supply_id' => 'integer',
|
|
'quantity' => 'integer',
|
|
];
|
|
}
|