Video.php 281 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Video extends Model
  5. {
  6. protected $fillable = [
  7. 'title',
  8. 'url',
  9. 'position',
  10. 'image',
  11. 'file',
  12. 'date',
  13. 'online',
  14. 'type',
  15. 'embed'
  16. ];
  17. }