@extends('layout.padrao') @section('title', 'List - Tank Owners') @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" => "Tank Owner"]) @endcan
@foreach($registers as $item) @endforeach
Operation Name Fantasy Name Address Country CNPJ Status
@can('update', App\Usuario::class) @endcan @can('delete', App\Usuario::class) id}}> @endcan {{ $item->name ?? '-' }} {{ $item->fantasyName ?? '-' }} {{ $item->address ?? '-' }} {{ isset($item->countries_id) ? $item->countries_id : '-'}} {{ $item->CNPJ ?? '-' }} @if ((!empty($item->status))&&$item->status == "Ativo") @else @endif
@include('bibliotecas.floattheadOverflow')
{{ $registers->links() }}
@include('include.modal_adicionar', ["formulario" => "TankOwner"]) @include('include.modal_editar', ["formulario" => "TankOwner"]) @include('include.modal_deletar', ["rota" => "TankOwner"]) @endsection