@extends('layouts.app') @section('title', 'Customer List') @section('content')

Customers

{{-- Alert Messages --}} @include('common.alert')
All Customers
@foreach ($customers as $customerrow) @endforeach
Name Email Mobile FixedLine Status Action
{{ $customerrow->Customer_name }} {{ $customerrow->email }} {{ $customerrow->mobile_number }} {{ $customerrow->fixed_number }} @if ($customerrow->status == 0) Inactive @elseif ($customerrow->status == 1) Active @endif @if ($customerrow->status == 0) @elseif ($customerrow->status == 1) @endif
@csrf @method('DELETE')
{{ $customers->links() }}
@if ($customers->count() > 0 ) @if(isset($customers) && !empty($customers)) @include('customers.delete-customerModal') @endif @endif @endsection @section('scripts') @endsection