@extends('frontend.layouts.amp') @section('title', 'Videos - ' . app_name()) @php $url = URL::current(); @endphp @push('head-area')
@endpush @section('content')
Videos
@if($data['videos'])
@foreach($data['videos'] as $video)
@if ($video->source == 'Youtube')
@elseif ($video->source == 'Vimeo')
@endif
@endforeach
@else
Sorry!
, no videos found.
@endif
@endsection