@extends('layout.padrao')
@section('title', 'List - Cargo Types')
@section('content')
Search For:
@include('include.filtro_result')
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@can('create', App\Usuario::class)
@include('include.btn_adicionar',["btn" => "cargotype"])
@endcan
@if(!Auth::user()->checkCharacteristics(['1', '2', '3']))
@endif
| Operation |
Register ID |
Cargo Type |
Status |
@foreach($cargoType as $item)
|
@if(Auth::user()->checkCharacteristics(['1', '2', '3']))
@can('update', App\Usuario::class)
@endcan
@can('delete', App\Usuario::class)
id}} data-toggle="modal" data-target="#delete" data-toggle="tooltip" data-placement="top" title="Delete" >
@endcan
@isset($extraActions)
@foreach($extraActions as $extraAction)
@if(isset($extraAction['department']))
@if($extraAction['department'] == Auth::user()->departamento)
@endif
@else
@endif
@endforeach
@endisset
@endif
|
{{ $item->id }}
|
{{ $item->descricao }}
|
@if ((!empty($item->status))&&$item->status == "Ativo")
@else
@endif
|
@endforeach
{{ $cargoType->links() }}
@include('bibliotecas.floattheadOverflow')
@include('include.modal_adicionar', ["formulario" => "CargoType"])
@include('include.modal_editar', ["formulario" => "CargoType"])
@include('include.modal_deletar', ["rota" => "CargoType"])
@endsection