added new models
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
|
||||
class Cabang extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $table = 'cabang';
|
||||
protected $fillable = [
|
||||
'region_id',
|
||||
'cost_id',
|
||||
'code',
|
||||
'name',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user