24 lines
501 B
PHP
24 lines
501 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class DeliverySchedule extends BaseAuditable
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $guarded = ['id', 'created_at', 'updated_at'];
|
|
|
|
protected $casts = [
|
|
'monday' => 'boolean',
|
|
'tuesday' => 'boolean',
|
|
'wednesday' => 'boolean',
|
|
'thursday' => 'boolean',
|
|
'friday' => 'boolean',
|
|
'saturday' => 'boolean',
|
|
'sunday' => 'boolean',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|