OwlCyberSecurity - MANAGER
Edit File: ProductOfferCategories.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class ProductOfferCategories extends Model { use SoftDeletes; protected $table = 'product_offer_categories'; protected $fillable = [ 'title', 'slug', 'is_show', 'file_id', 'target', 'priority', ]; }