Untitled

Anonymous
plain_text
09/04/2024 2:49 PM
428 B
19
Indexable
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class BannerEvent extends Model
{
    use HasFactory;

    protected $fillable = ['banner_event_skeleton_name', 'banner_event_skeleton_image', 'post_banner_event_template_image'];
}
Editor is loading...
Leave a Comment