30 lines
548 B
PHP
30 lines
548 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class FormVehicleRunningCost extends Model
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'form_vehicle_running_cost';
|
|
protected $fillable = [
|
|
'expense_number',
|
|
'user_id',
|
|
'tanggal',
|
|
'liter',
|
|
'harga',
|
|
'jarak',
|
|
'tipe_bensin',
|
|
'nopol',
|
|
'keterangan',
|
|
'bukti1',
|
|
'bukti2',
|
|
'bukti3',
|
|
'account_number',
|
|
'status',
|
|
];
|
|
}
|