@extends('layouts.layout-horizontal') @section('title', 'Trade Exhibitions') @section('content')
Trade Exhibitions
@forelse ($exhibitions as $exhibition) @empty @endforelse
# Company Exhibition Name Exhibitor Date Location Dealer Card Items Actions
{{ $loop->iteration }} {{ $exhibition->company->name ?? '—' }} {{ $exhibition->exhibition_name }} {{ $exhibition->exhibitor_name ?: '—' }} {{ $exhibition->exhibition_date->format('d-M-Y') }} {{ $exhibition->location ?: '—' }} @if ($exhibition->dealer_card_path) View @else @endif {{ $exhibition->items_count }} items
No field entries found.
@endsection