I am working on uploading video file in laravel but the problem that it takes much time as it could reached to 2-3 minutes
This is the snippet of code
if($courseclass->video !="")
{
$content = @file_get_contents(public_path().'/video/class/'.$courseclass->video);
if ($content) {
unlink(public_path().'/video/class/'.$courseclass->video);
}
}
Do anyone has an idea about this , Thanks in advance