25 lines
439 B
PHP
25 lines
439 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MaterialMovement extends Model
|
|
{
|
|
protected $table = 'material_movements';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'barcode_id',
|
|
'user_id',
|
|
'from_user_id',
|
|
'to_user_id',
|
|
'ticket_id',
|
|
'movement_type',
|
|
'qty',
|
|
'description',
|
|
'created_by',
|
|
'created_at'
|
|
];
|
|
} |