14 lines
218 B
PHP
14 lines
218 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Filefoto extends Model
|
|
{
|
|
protected $table = "db_file";
|
|
protected $fillable = [
|
|
'nofoto','namafile','jenisfile','judul'
|
|
];
|
|
}
|