@extends('backend.layout') @section('content')
    @csrf @if (request()->input('event_type') == 'venue')
    {{-- /*****--variationwise ticket & early bird discount--****** --}}
    {{ __('Variation Name') }} {{ __('Price') . '*' }} {{ __('Available Tickets') . '*' }} {{ __('Max ticket for each customer') . '*' }}
    @foreach ($languages as $language)
    @endforeach
    {{-- /*****--variationwise ticket & early bird discount--****** --}} {{-- /*****--Ticekt limtit & ticket for each customer start--****** --}}
    {{-- /*****--Ticekt limtit & ticket for each customer end--****** --}}
    @endif @if (request()->input('event_type') == 'online')
    @endif
    @foreach ($languages as $language)
    @php $currLang = $language; @endphp @foreach ($languages as $language) @continue($language->id == $currLang->id)
    @endforeach
    @endforeach
    @endsection @section('script') @php $languages = App\Models\Language::get(); $names = ''; foreach ($languages as $language) { $varitaion_name = $language->code . '_variation_name[]'; $names .= "
    "; } @endphp @endsection @section('variables') @endsection