@extends('layouts.back') @section('titulo', 'Leads') @section('page_header','Painel') @section('content')

Leads

@can('create', \App\Lead::class) @endcan @if(Auth::user()->hasRole(['Administrador', 'Gerente do CRM'])) @endif @foreach ($leads as $item) {{-- --}} @if(Auth::user()->hasRole(['Administrador', 'Gerente do CRM'])) @endif @if($item->cliente) @else @endif @endforeach
# Nome Fantasia CelularConsultorPróximo Contato Cliente Ações
{{$item->id}} {{$item->nome_contato}} {{$item->fantasia}} {{$item->celular}} {{$item->proximo_contato ? date('d/m/Y H:i:s', strtotime($item->proximo_contato)) : ''}} SimNão
@can('view', $item) @endcan @can('update', $item) @endcan @if(Auth::user()->can('exportar', $item) && !$item->cliente) @endif @can('delete', $item)
{!! csrf_field() !!}
@endcan
@endsection @push('footer_imports_end') @endpush @component('components.outros.configuracao-data-href-index', ['tabela' => 'leads']) @endcomponent