芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/app/Models/Admin/ServiceCategory.php
<?php namespace App\Models\Admin; use Cviebrock\EloquentSluggable\Sluggable; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ServiceCategory extends Model { use HasFactory; use Sluggable; /** * Return the sluggable configuration array for this model. * * @return array */ public function sluggable(): array { return [ 'service_category_slug' => [ 'source' => 'category_name', 'maxLength' => null, 'maxLengthKeepWords' => true, 'method' => null, 'separator' => '-', 'unique' => true, 'uniqueSuffix' => null, 'includeTrashed' => false, 'reserved' => null, 'onUpdate' => false ] ]; } /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'language_id', 'category_name', 'order', 'status', 'service_category_slug', ]; }
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage