@extends('layouts.frontend') @section('content')
@if(isset($posts)) @php $count = 0; @endphp @foreach($posts as $post) @php $count++; @endphp
{{$post->title}}

{!! $post->content !!}

Play @if (Auth::check()) @if(isset($post['video']) && $post['video']!='') Download @endif @else @if(isset($post['video']) && $post['video']!='') Download @endif @endif
@endforeach
@endif @if($count < 1)

No Marketing Video Found!

@endif
@endsection