@extends('layouts.master') @section('title', 'User') @push('css') @endpush @section('content')
@csrf

customer Information

@foreach ($customers as $customer) @endforeach
Added Date Customer Id Customer Name Owner Name Area Contact Number Customer Type Credit Limit Action
{{ \Carbon\Carbon::createFromTimestamp(strtotime($customer->created_at ))->format('d-m-Y')}} {{ $customer->customer_id }} {{ $customer->customer_name }} {{ $customer->contact_person }} {{ $customer->area }} {{ $customer->mobile }} {{ $customer->customer_type }} {{ $customer->credit_limit }}
@endsection @push('js') @endpush