@extends('layouts.dashboard')
@section('content')
@include('notification')
|
|
|
|
|
|
|
|
@foreach($exhibitors as $key => $exhibitor)
{{ $key + 1 }} |
{{ $exhibitor->profile ? $exhibitor->profile->company_name : '-' }} |
{{ $exhibitor->name }} |
{{ $exhibitor->email }} |
{{ $exhibitor->profile ? $exhibitor->profile->mobile : '-' }} |
@if($key > 0)
|
|
|
@else
- |
- |
- |
@endif
@endforeach
@endsection