@if(request()->id)
@endif
@if(isset($video_folders) && count($video_folders) > 0)
@foreach($video_folders as $key => $folder)
@endforeach
@endif
@if(count($result) > 0)
@foreach($result as $key => $row)
@php
if(request()->id && $row->video != NULL ){
$row->video = url('/').'/'.'sunn_galaa_aakaas_kee/public/gallery/video/'.$row->folder_name.'/'.$row->video;
}
else if($row->video != NULL){
$row->video = url('/').'/'.'sunn_galaa_aakaas_kee/public/gallery/video/'.$row->video;
}
if($row->video_thumbnail != NULL){
$row->video_thumbnail = url('/').'/'.'sunn_galaa_aakaas_kee/public/gallery/video/thumbnail/'.$row->video_thumbnail;
}
@endphp
{{$row->title}}
@endforeach
@endif