| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class AgentMaterial extends Model
- {
- /**
- * 数据库连接名
- */
- protected $connection = 'mysql';
- /**
- * 与模型关联的表名
- */
- protected $table = 'webgame.agent_materials';
- /**
- * 可批量赋值的属性
- */
- protected $fillable = [
- 'material_id',
- 'photo',
- 'title',
- 'content',
- 'sort_order',
- 'status'
- ];
- /**
- * 创建查询范围获取活跃的素材
- */
- public function scopeActive($query)
- {
- return $query->where('status', 1);
- }
- }
|