SiteBanner.php 429 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Models;
  3. use Dcat\Admin\Traits\HasDateTimeFormatter;
  4. use Illuminate\Database\Eloquent\Model;
  5. class SiteBanner extends Model
  6. {
  7. use HasDateTimeFormatter;
  8. protected $table = 'site_banner';
  9. protected $fillable = [
  10. 'image_url',
  11. 'order',
  12. 'banner_url',
  13. 'title',
  14. 'show',
  15. 'position',
  16. 'created_at',
  17. 'updated_at',
  18. 'dist_id',
  19. ];
  20. }