@extends('layouts.app') @section('content')

Customer List

+ Add Customer
@foreach($customers as $customer) @endforeach
Customer ID Name Mobile Package Monthly Bill Action
{{ $customer->customer_id }} {{ $customer->name }} {{ $customer->mobile }} {{ $customer->package_name }} ৳ {{ $customer->monthly_bill }} Edit
@csrf @method('DELETE')
@endsection