أُنشئ من Tokal/Test
31 أسطر
540 B
PHP
31 أسطر
540 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Offer extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'venue_id',
|
|
'title',
|
|
'description',
|
|
'image_url',
|
|
'start_at',
|
|
'end_at',
|
|
'is_active',
|
|
'created_at',
|
|
];
|
|
|
|
protected $casts = [
|
|
'is_active' => 'boolean',
|
|
'start_at' => 'datetime',
|
|
'end_at' => 'datetime',
|
|
];
|
|
}
|