@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') {{-- MAIN CONTENT --}}
{{ __('Thêm khách hàng') }}
{{ Form::open(array('url' => url()->current(), 'method' => 'get')) }}
{{ Form::close() }}
@forelse($list as $order) @empty @endforelse
{{__('Mã')}} {{__('Tên KH')}} {{__('SĐT')}} {{__('Địa chỉ')}} {{__('Người thân')}} {{__('Ngày tạo')}}
{{ $order->id }} {{ $order->fullname }} {{ $order->phone }} {{ $order->address }} {{ $order->dependant }} {{ $order->updated_at->format('d-m-Y H:i') }}
{{__('Không có dữ liệu')}}
@if(has_paging($list)) @endif
@endsection @php @endphp