@extends('admin.layouts.app') @section('title', 'Top Client List') @push('styles') @endpush @section('container')

Top Clients

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{--
@error('client')

{{ $message }}

@enderror
--}}

Top Client List

@foreach($clients as $index=>$client) @endforeach
SL Customer Mobile No Address Paid
{{ $index+1 }} {{ $client->name }} {{ $client->phone }} {{ $client->address }} {{ $client->paid }}
Total {{ number_format(0,2) }} {{ number_format(0,2) }}
@endsection @push('scripts') @endpush