Production.php 490 Bytes
<?php

namespace App\Modules\Models\Production;

use App\Modules\Models\Production\Traits\Relationship\ProductionRelationship;
use Illuminate\Database\Eloquent\Model;

class Production extends Model
{
    use ProductionRelationship;
    //
    protected $table = 'production';

    //
    protected $fillable = ['id', 'rent_id', 'is_out', 'power_no','rent_machine_id','rent_hatch_no','is_return','return_machine_id','return_hatch_no','return_time','is_refund','refund_no','refund_time'];

}