@extends('layouts.heading-page')
@section('title')
Event -
@endsection
@section('seo_keywords')
{{ $dataRow->seo_keyword }}
@endsection
@section('seo_description')
{{ $dataRow->seo_description }}
@endsection
@section('css')
@endsection
@section('breadcrumbs')
Event
@endsection
@section('page-main')
Event
{{ $dataRow->title }}
- Date: {{ date('Y-m-d', strtotime($dataRow->event_at)) }}
- Venue: {{ $dataRow->venue }}
- Contact: {{ $dataRow->contact }}
@php
$img_memo = '';
$img_src = '/assets/img/news-item-a01.jpg';
$imgs = $dataRow->photos;
// $imgs = array_filter($row['photos'], function($v) {
// return $v['is_selected'] == true;
// });
if (count($imgs) > 0)
{
foreach($imgs as $img)
{
//$img_memo = $img['comment'];
$img_src = URL::asset('/storage/'.$img['file_path']);
}
}
@endphp
{!! $dataRow->body !!}
@endsection
@section('script')
@endsection