@extends('admin.layouts.app') @section('content') @push('styles') @endpush
{{-- Back --}}
Add New Customer
@if(session('success'))
{{ session('success') }}
@endif
@foreach ($customers as $customer) @endforeach
{{-- --}}
SL.No Contract Number Customer Name Ref. Code Executive Name Contact No Status Action
{{ @$loop->iteration }}

{{ @$customer->contract_no }}

{{ @$customer->customer_name }}

{{ @$customer->reference_id }}

{{ @$customer->staff->staff_name }}

{{ @$customer->phone_no }}

@if ($customer->status == 1) Active @else InActive @endif
@endsection