@extends('layouts.main') @section('title', 'Agency Tickets') @section('content')
Tickets
# | 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')) {{-- disable ticket modal --}} {{-- disable ticket modal --}} @else @endif {{-- edit ticket modal --}} |