@extends('layouts.'.env('THEME'))
@section('style')
@endsection
@section('content')
{!! Form::open(['route' => 'contacts_dashboard', 'method' => 'get']) !!}
@if(!empty($mode))
@endif
@if($mode == 'customers')
@elseif($mode == 'sales')
@endif
{!! Form::close() !!}
| IDs lead, user, address |
Name |
Created |
Installed |
Area |
Voucher |
@if(auth()->user() && auth()->user()->isPermitted("super"))
Duplicate |
@endif
Action |
@foreach($all_leads as $lead)
@endforeach
@if(empty($all_leads))
|
No results found, try expanding the search criteria options at the top of the page.
|
@endif
@if($laravel_pagination)
{!! $all_leads->links('vendor.pagination.bootstrap-4') !!}
@else
@endif
@if(auth()->user() && auth()->user()->isPermitted("super"))
@endif
@endsection
@section('script')
@endsection