@extends('admin::index') @section('content')

{{ $header or trans('admin.title') }} {{ $description or trans('admin.description') }}

@include('partials.breadcrumb')
@include('partials.error') @include('admin::partials.exception') @include('admin::partials.toastr')
{{ Form::open(array('url' => url()->current(), 'method' => 'get')) }}
{{ Form::close() }}
@forelse($customers as $customer) @empty @endforelse
{{ __('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')}}
{{-- Modal: Thu nợ (chọn khách hàng) --}} {{-- Modal: Ghi nợ tay (chọn khách hàng) --}} @endsection