@extends(AdminBaseDashboard::AdminBaseLayout()) @section('title', trans('cust::customer.Edit_Title')) @section('content')

{{ __('cust::customer.customers')}}

@if(count($my_customer) > 0) @foreach($my_customer as $customer) @include('customer::short_code.delete_customer_modal') @endforeach @endif
#ID {{__('cust::customer.name') }} {{__('cust::customer.tel no') }} {{__('cust::customer.billing address') }} {{__('cust::customer.shipping address') }} {{__('cust::customer.credit') }} {{__('cust::customer.status') }} {{__('cust::customer.registered dates') }} {{__('cust::customer.action') }}
{{ $loop->iteration }} {{ $customer->name }} {{ $customer->mobile }} {{ $customer->billing_address }} {{ $customer->shipping_address }} {{ AdminBaseDashboard::format_payment($customer->credit) }} {{ trans('stock::supplier.'.AdminStatusType::status_state($customer->status)['title']) }} {{ $customer->created_at}} {{-- --}}
@include('customer::short_code.edit_customer_modal')
@endsection