@php
$existingVideos = is_string($company_details->videos)
? json_decode($company_details->videos, true)
: $company_details->videos;
@endphp
@if(is_array($existingVideos))
@foreach($existingVideos as $index => $videoPath)
{{ basename($videoPath) }}
@endforeach
@endif