@extends('layouts.'.env('THEME'))
@section('style')
@endsection
@section('content')
@if(auth()->user() && auth()->user()->isPermitted("super"))
@endif
@php
/*
$filter_fields = [
'id' => ['type' => 'text'],
'fullname' => ['type' => 'text'],
'voucher_consent' => ['type' => 'select', 'title' => 'voucher', 'options' => config('enum.voucher_consent_states')],
'install_state' => ['type' => 'select', 'title' => 'install', 'options' => $install_states],
'getEmail' => ['type' => 'text'],
'getArea+id' => ['type' => 'select', 'title' => 'area', 'options' => $areas],
'address+address_line_1' => ['type' => 'text'],
'address+postcode' => ['type' => 'text'],
'address+telephone' => ['type' => 'text'],
'gpon_sn' => ['type' => 'text'],
'mac' => ['type' => 'text'],
];
*/
@endphp
| 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.
|
@endif
@if($laravel_pagination)
{!! $all_leads->links('vendor.pagination.bootstrap-4') !!}
@else
@endif
@if(auth()->user() && auth()->user()->isPermitted("director"))
@endif
@endsection
@section('script')
@endsection