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

customers Information

@foreach ($customers as $customer) @endforeach
Serial ID Name Address Contact No
{{ $loop->iteration }} {{ $customer->customer_id }} {{ $customer->customer_name }} {{ $customer->address }} {{ $customer->mobile }}
@endsection @push('js') @endpush