489495df
芝麻web文件管理
芝麻web文件管理V1.00
489495df
编辑当前文件:/home/landifun/www/Modules/Contacts/Entities/Contact.php
<?php namespace Modules\Contacts\Entities; use Illuminate\Database\Eloquent\Model; class Contact extends Model { protected $table = 'contacts'; protected $dates = [ 'created_at', 'updated_at', ]; protected $fillable = [ 'fullname', 'phone', 'email', 'subject', 'content', 'is_readed', ]; protected $casts = [ 'is_readed' => 'boolean', ]; public function scopeReaded($query) { return $query->where('is_readed', '=', 1); } }
Not Found
404
Not Found