@extends('layouts.heading-page') @section('title') Events - @endsection @section('seo_keywords') @endsection @section('seo_description') @endsection @section('css') @endsection @section('breadcrumbs') Event @endsection @section('page-main')

Event

@php foreach ($dataRows as $row) { $img_memo = ''; $img_src = '/assets/img/news-item-a01.jpg'; $imgs = $row->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']); break; } } @endphp
{{ $img_memo }}

{{ $row->title }}

Date: {{ date('Y-m-d', strtotime($row->event_at)) }}

Venue: {{ $row->venue }}

Contact: {{ $row->contact }}

@php } @endphp
@endsection @section('script') @endsection