@extends('layouts.main') @section('title', 'Agency Tickets') @section('content')

Agency Tickets

All information about various Tickets
@foreach($ticketOffers as $index => $offer) @endforeach
# Agency Ticket Type Departure City Arrival City Price @lang('Status') Actions
{{ $index + 1 }} {{ $offer->agency . ' (' . $offer->agency_location . ', ' . $offer->agency_city . ')' }} {{ $offer->ticket_type }} {{ $offer->departure_city }} {{ $offer->arrival_city }} {{ $offer->price . ' ' . $general->currency_code }} @if($offer->status == 1) @lang('Active') @else @lang('Disabled') @endif @if(auth()->user()->can('create_ticket_offer'))
@if($offer->status == 1) @else @endif
{{-- disable ticket modal --}} {{-- disable ticket modal --}} @else
@endif {{-- edit ticket modal --}}
{{-- modals --}} @if(auth()->user()->can('create_ticket_offer')) @endif {{-- end modals --}} @endsection @push('script') @endpush