Files
lis/htdocs/app/Filefoto.php
2025-07-16 07:36:13 +07:00

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'
];
}