Files
luckywheel/app/Models/DanhSachGiaiThuong.php
2026-01-08 10:44:51 +07:00

25 lines
537 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DanhSachGiaiThuong extends Model
{
protected $table = "danh_sach_giai_thuong";
protected $primaryKey = "ma_giai_thuong";
protected $fillable = [
'ma_giai_thuong',
'noi_dung',
'hinh_anh',
'so_thu_tu',
'ma_so_nhan_giai',
'ten_nguoi_nhan_giai',
'phan_loai_khach',
'ma_so_nhan_giai_thuc_te',
'ten_nguoi_nhan_giai_thuc_te',
'da_nhan_giai',
'thoi_gian_cho'
];
}