@extends('layouts.app') @section('content')

{{config('app.event.name')}}

@if($errors->any())
{{$errors->first()}}
@endif
@include('flash::message')

Booth Attendants Information

Add a Booth Manager & 4 Attendants

@csrf
{{ __('Name') }}
@error('name') {{ $message }} @enderror
{{ __('Role') }}
@error('designation') {{ $message }} @enderror
{{ __('WhatsApp Number ') }}
@error('whatsapp') {{ $message }} @enderror
{{ __('Email') }}
@error('email') {{ $message }} @enderror
{{ __('Meeting Platform') }}
@error('designation') {{ $message }} @enderror
{{ __('Meeting Link') }}
@error('meeting_link') {{ $message }} @enderror
{{ __('Timing') }}
@error('timing') {{ $message }} @enderror
@php $i=1 @endphp @foreach ($attendants as $attendant) @endforeach
# Name Role Timing Action
{{$i++}} {{$attendant->name}} {{($attendant->designation ==0)? 'Attendant' : 'Manager' }} {{$attendant->timing}} Edit Delete
@include('exhibition.main_footer')
@endsection('content') @section('scripts') {{-- --}} {{-- --}} @endsection