@extends('layouts.app') @section('content')
{{ _lang('Add New') }} {{ _lang('Imports') }} {{ _lang('List View') }}
{{ _lang('Leads Kanban') }} @php $date_format = get_company_option('date_format','Y-m-d'); @endphp
@foreach($lead_status as $status)
  • {{ $status->title }}

      @foreach($status->leads->take(20) as $lead)
    • {{ $lead->id.'#- '.$lead->name }}
      {{ _lang('Source') }}: {{ $lead->lead_source->title }}
      {{ _lang('Created') }}: {{ date($date_format, strtotime($lead->created_at)) }}
    • @endforeach
    @if( isset($lead) ) @endif
@endforeach
@endsection @section('js-script') @endsection