芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/app/Models/Admin/Blog.php
[ 'source' => 'title', 'maxLength' => null, 'maxLengthKeepWords' => true, 'method' => null, 'separator' => '-', 'unique' => true, 'uniqueSuffix' => null, 'includeTrashed' => false, 'reserved' => null, 'onUpdate' => true ] ]; } /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'language_id', 'category_id', 'category_name', 'user_id', 'author_name', 'title', 'description', 'short_description', 'section_image', 'section_image_2', 'image_status', 'type', 'slug', 'view', 'order', 'status', 'tag', 'breadcrumb_status', 'custom_breadcrumb_image', 'meta_description', 'meta_keyword', ]; public function category() { return $this->belongsTo('App\Models\Admin\Category','category_id','id'); } }