fix skti2

This commit is contained in:
hafifierahman
2022-04-13 10:58:32 +08:00
parent 62d1252f4e
commit 29848bd243
4 changed files with 20 additions and 26 deletions
+32
View File
@@ -0,0 +1,32 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ARFiles extends Model
{
protected $table = 'arrahn_files';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'files_id',
'data',
'filename',
'type',
'tarikhmasa'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}