123456789101112131415161718192021222324 |
- <?php
- namespace App\Models;
- use Dcat\Admin\Traits\HasDateTimeFormatter;
- use Illuminate\Database\Eloquent\Model;
- class SitePreviewVideo extends Model
- {
- use HasDateTimeFormatter;
- protected $table = 'site_preview_video';
- protected $fillable = [
- // ... other fillable attributes
- 'video_url', // Add this line
- 'preview_url',
- 'status',
- 'album_id',
- 'remark',
- // Include other attributes if needed
- ];
- }
|