@extends('frontLayout.frontlayout') @section('content')
@include('user.partials.flash_messages')
Onboarding Videos
{{--
--}} @foreach($videos as $key => $v) @if($v['video'] && file_exists(public_path($v['video']))) @php $video = explode('.',$v['video']); $video = explode('/',current($video)); $thumbnail = '/uploads/thumbnails/'.end($video).'.png'; $poster = ""; if(file_exists(public_path($thumbnail))){ $poster = $thumbnail; } @endphp
@if($v['title'])
{{$v['title']}}
@endif {{--

12-11-2022

--}}
@endif @endforeach
@endsection