{{-- extend layout --}} @extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title','Usuarios') {{-- vendor styles --}} @section('vendor-style') @endsection {{-- page styles --}} @section('page-style') @endsection {{-- page content --}} @section('content')
add Usuarios
Filtrar keyboard_arrow_down
@forelse ($users['content'] as $usuario) @empty @endforelse
TIPO IDENTIFICACIÓN IDENTIFICACIÓN NOMBRE/APELLIDO USERNAME GENERO CELULAR ACCIONES
{{ $usuario->identificationType }} {{ $usuario->identification }} {{ $usuario->fullName }} {{ $usuario->username }} {{ ($usuario->gender == 1) ? 'Masculino' : 'Femenino' }} {{ ($usuario->cellPhone == null) ? 'Sin Celular' : $usuario->cellPhone }}
@endsection {{-- vendor scripts --}} @section('vendor-script') @endsection {{-- page scripts --}} @section('page-script') @endsection