1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Models;
- use Dcat\Admin\Traits\HasDateTimeFormatter;
- use Illuminate\Database\Eloquent\Model;
- class SiteBanner extends Model
- {
- use HasDateTimeFormatter;
- protected $table = 'site_banner';
- protected $fillable = [
- 'image_url',
- 'order',
- 'banner_url',
- 'title',
- 'show',
- 'position',
- 'created_at',
- 'updated_at',
- 'dist_id',
- ];
- }
|