Files
api_arrahn/app/ARFiles.php
T
hafifierahman 29848bd243 fix skti2
2022-04-13 10:58:32 +08:00

32 lines
544 B
PHP

<?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 = [];
}