@extends('layouts.logeado') @section('sub_title', 'Pasajeros') @section('style') @endsection @section('sub_content')
@if (session('actualizacion'))
{{ session('actualizacion')}}
@endif @if($errors->first('sql') != null)
{{$errors->first('sql')}}
@endif
@if (Auth::user()->roles_id == 4) @elseif ($usuario->roles_id == 1 || $usuario->modulos[9]->pivot->editar == 1) @endif
@forelse($pasajeros as $pasajero) @empty @endforelse
Identificación Nombre Celulares Centro de costo
{{ $pasajero->identificacion }} {{ $pasajero->nombre }} {{ $pasajero->celulares }} Sub_Cuenta: {{ $pasajero->sub_cuenta }} Affe: {{ $pasajero->affe }} Actualizar
No hay datos
@if (method_exists($pasajeros, 'links')) {{ $pasajeros->links() }} @endif
@endsection @section('modal') @endsection @section('script') @endsection