@if ($message = Session::get('success'))
@endif
{{ $clientes->onEachSide(5)->links() }}
Ações |
{{-- ID | --}}
Cliente |
Nº Cliente Tfuel |
Nº Cliente IM |
E-mail |
Contribuinte |
Gestor |
TFuel - Data Solicitação |
TFuel - Plafond |
IM - Data Solicitação |
IM - Plafond |
Factoring |
Equipamentos |
Valor Investido - Equipamentos |
Assistências |
Valor Investido - Assistências |
Sinistro |
@foreach ($clientes as $item)
@if($permissao->alterar_clientes)
{{-- --}}
@endif
{{-- --}}
@if($permissao->excluir_clientes)
@endif
|
{{-- {{ $item->id }} | --}}
{{ Str::upper($item->nome) }} |
{{ $item->tfuel }} |
{{ $item->im }} |
{{ $item->email_cliente }} |
{{ $item->contribuinte }} |
{{ $item->gestor_user ? $item->gestor_user->name : "" }} |
@if($item->data_solicitacao_tfuel) {{ date('d-m-Y', strtotime($item->data_solicitacao_tfuel ))}} @endif |
{{ $item->tfuel_plafond }} |
@if($item->data_solicitacao_im){{ date('d-m-Y', strtotime($item->data_solicitacao_im)) }}@endif |
{{ $item->im_plafond }} |
{{ $item->factoring }} |
{{ $item->equipamentos }} |
{{ $item->valor_investido_equipamentos }} |
{{ $item->assistencia }} |
{{ $item->valor_investido_assistencias }} |
{{ $item->sinistro }} |
@endforeach
{{ $clientes->onEachSide(5)->links() }}
@endsection