@if (session()->has('message'))
{{ session('message') }}
@endif
@if ($operations->isEmpty())

No hay operaciones registradas.

@else @foreach ($operations as $op) @endforeach
Cliente Servicio Pax Saldo Hora Salida Vehículo Agencia / Vendedor Guía Acciones
{{ $op->full_name }} {{ $op->service->nombre_servicio ?? '' }} {{ $op->pax ?? '' }} {{ round($op->balance, 2) ?? '' }} {{ $op->departure_time }} {{ $op->vehicle->nombre ?? '' }} {{ $op->ally->company_name ?? '' }} {{ $op->guide->nombre ?? '' }} Editar
{{ $operations->links() }}
@endif