@extends('layout.main') @section('title', config('app.name') . ' | Customer Views') @section('content')
Customer id, Name,Email,Phone
Filter Category List
Filter Company List

Customer Lists

@include('partials.errors') @include('partials.success')
@if(isset($customer_lists)) @forelse($customer_lists as $customer_list) @empty @endforelse @endif
# Name Customer_id Mobile Email Category Company Actions
{{$i++}} {{$customer_list->customer_name}} {{$customer_list->customer_id}} {{$customer_list->mobile}} {{$customer_list->email}} @if($customer_list->category==1)Indvidual @elseif($customer_list->category==2) Company @else Enterprices @endif @if($customer_list->company==0) Company Not Available @else{{$customer_list->companyList->company}}@endif visibility==0) class="btn btn-success customer_visible" @else class="btn btn-warning customer_visible" @endif >visibility==0) class="fa fa-eye" @else class="fa fa-eye-slash" @endif>
No Record Found!
@endsection