Files
api_arrahn/app/KPFiles.php
T
hafifierahman 62d1252f4e fix files
2022-04-12 11:00:52 +08:00

32 lines
546 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class KPFiles extends Model
{
protected $table = 'kelulusanpb_files';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kp_id',
'data',
'filename',
'type',
'tarikhmasa'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}