Files
lis/app/Filefoto.php
2025-01-27 08:16:55 +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'
];
}