ibnu
2 years ago
4 changed files with 54 additions and 5 deletions
@ -0,0 +1,17 @@
|
||||
<?php |
||||
|
||||
namespace App\Models; |
||||
|
||||
use Illuminate\Database\Eloquent\Model; |
||||
|
||||
class TmpImport extends Model |
||||
{ |
||||
protected $table = 'tmp_import'; |
||||
|
||||
const CREATED_AT = 'created_at'; |
||||
const UPDATED_AT = 'created_by'; |
||||
|
||||
protected $fillable = [ |
||||
'file', 'type_dokumen', 'gantt_id', 'created_at', 'created_by' |
||||
]; |
||||
} |
Loading…
Reference in new issue