| {{ __('Khách hàng') }} | {{ __('SĐT') }} | {{ __('Tổng nợ') }} | ||||||
|---|---|---|---|---|---|---|---|---|
| {{ $customer->fullname }} | {{ $customer->phone }} | {{ number_format($customer->debt_total, 1) }} ₫ | ||||||
{{__('Không có dữ liệu')}} |
||||||||
@extends('admin::index')
@section('content')
{{ $header or trans('admin.title') }}
{{ $description or trans('admin.description') }}
@include('partials.breadcrumb')
@forelse($customers as $customer)
{{ __('Khách hàng') }}
{{ __('SĐT') }}
{{ __('Tổng nợ') }}
@empty
{{ $customer->fullname }}
{{ $customer->phone }}
{{ number_format($customer->debt_total, 1) }} ₫
@endforelse
{{__('Không có dữ liệu')}}