32 lines
546 B
PHP
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 = [];
|
|
} |