Watiah11
6 months ago
1 changed files with 17 additions and 17 deletions
@ -1,17 +1,17 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
|
|
||||||
class ProjectType extends Model |
class ProjectType extends Model |
||||||
{ |
{ |
||||||
protected $table = 'm_type_proyek'; |
protected $table = 'm_type_proyek'; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'name', 'description', 'created_at', 'created_by', 'updated_at', 'updated_by', 'company_id' |
'name', 'description', 'created_at', 'created_by', 'updated_at', 'updated_by', 'company_id', 'is_multiLocation' |
||||||
]; |
]; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue