@extends('backend.layouts.app') @section('title', $data['p_heading']) @section('content')
{{ $data['p_heading'] }}
@if(sizeof($data['shows']) > 0)

{{ $data['p_description'] }}

@foreach($data['shows'] as $row) @endforeach
ID Name Start Date End Date Location Status Actions
{{ $row->id }} {{ $row->name }} {{ $row->start_date }} {{ $row->end_date }} {{ $row->location }} @if($row->status == 'Y') Active @else In-active @endif
@method('DELETE') @csrf
@else Sorry!, no trade shows found. @endif
@stop