@include('includes.header') @include('includes.alerts')

Recent Work

@foreach ( $recentWorks as $recentWork)
@php $fileExtension = pathinfo($recentWork->file, PATHINFO_EXTENSION); @endphp @if(in_array(strtolower($fileExtension), ['mp4', 'mov', 'avi', 'mkv'])) @else Recent Work @endif

{{ ucfirst($recentWork->title) }}

{!! \Str::limit($recentWork->description, 15) !!}

{{ \Carbon\Carbon::parse($recentWork->date_time)->format('jS M Y') }}
@endforeach
@include('includes.footer')