You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
571 B

4 weeks ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class StudyTour extends Model
{
use HasFactory;
protected $fillable = [
'name',
'tags',
'venue_ids',
3 weeks ago
'cover_image',
'gallery_media',
4 weeks ago
'intro_html',
'sort',
1 week ago
'is_on_shelf',
4 weeks ago
];
protected $casts = [
'tags' => 'array',
'venue_ids' => 'array',
3 weeks ago
'gallery_media' => 'array',
1 week ago
'is_on_shelf' => 'boolean',
4 weeks ago
'sort' => 'integer',
];
}