@extends('frontend.layouts.mobile') @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) @php $video_link = 'href="#video_modal" rel="modal:open" onclick="open_video_modal(\'' . $video->video_id . '\',\'external\',\'' . $video->source . '\');"'; @endphp
{{ $video->title }}
@endforeach
@endif @if($data['videos'])
{!! $data['videos']->appends( request()->except('page') )->links() !!}
@endif
@push('after-scripts')
@endpush @endsection