@extends('layout.padrao')
@section('title', 'List - ' . $title)
@section('pesquisa')
@include('include.html_search_like', [ "route" => $route,
"searchBy" => $searchBy
])
@endsection
@section('content')
@include('include.filtro_result')
@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@include('include.html_export_link', [ "action" => $controller ])
@can('create', App\Usuario::class)
@include('include.btn_adicionar',["btn" => "genericAddButton"])
@endcan
@include($viewLocation . '.table', ['type' => 'table'])
@include('bibliotecas.floattheadOverflow')
{{ $registers->links() }}
@include('include.modal_insert_crud', [
"route" => $route,
"title" => $title,
"fields" => $fieldsProperties
])
@include('include.modal_update_crud' , [
"route" => $route,
"title" => $title,
"fields" => $fieldsProperties
])
@include('include.modal_delete_crud', ["route" => $route,
"title" => $title])
@endsection