Your IP : 3.143.241.205


Current Path : /proc/thread-self/root/proc/thread-self/root/home/lentoinv/props/app/Models/
Upload File :
Current File : //proc/thread-self/root/proc/thread-self/root/home/lentoinv/props/app/Models/Video.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Video extends Model
{
    use HasFactory;

    protected $fillable = [
        'length', 'title', 'lecture_id', 'video_hash', 'video', 'status'
    ];
}

?>