12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- /**
- * 文章
- */
- class Article extends Model {
- use SoftDeletes;
- protected $table = 'article';
- protected $dates = ['deleted_at'];
- protected $guarded = ['id', 'created_at'];
- // 筛选类型
- public function scopeType($query, $type) {
- return $query->whereType($type);
- }
- }
|