@extends('layouts.back') @section('titulo', 'Tarefas') @section('page_header','Painel') @push('header_imports') @endpush @section('content')
Novos

{{$leads->count()}} Lead(s)

@can('create', \App\Lead::class) @endcan
@foreach($leads as $lead)
@if(Auth::user()->can('editar leads')) @endif

{{date('d/m/Y', strtotime($lead->created_at))}}

{{$lead->fantasia ? $lead->fantasia : ''}}

{{$lead->nome_contato}}

@if($lead->cidade)

{{$lead->cidade ? $lead->cidade->cidadeUF() : ''}}

@endif
@endforeach
@foreach($etapas as $etapa)
{{$etapa->nome}}

{{$etapa->leads->count()}} Lead(s)

@foreach($etapa->leads as $lead)
@if(Auth::user()->can('editar leads')) @endif

{{date('d/m/Y', strtotime($lead->created_at))}}

{{$lead->fantasia ? $lead->fantasia : ''}}

{{$lead->nome_contato}}

@if($lead->cidade)

{{$lead->cidade ? $lead->cidade->cidadeUF() : ''}}

@endif
@endforeach
@endforeach
@endsection @push('footer_imports_end') @endpush