SitePreviewVideo.php 470 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models;
  3. use Dcat\Admin\Traits\HasDateTimeFormatter;
  4. use Illuminate\Database\Eloquent\Model;
  5. class SitePreviewVideo extends Model
  6. {
  7. use HasDateTimeFormatter;
  8. protected $table = 'site_preview_video';
  9. protected $fillable = [
  10. // ... other fillable attributes
  11. 'video_url', // Add this line
  12. 'preview_url',
  13. 'status',
  14. 'album_id',
  15. 'remark',
  16. // Include other attributes if needed
  17. ];
  18. }