@extends(AdminBaseDashboard::AdminBaseLayout()) @section('title', trans('memo::memo.All customer Memo List')) @section('content')
@if(count($memo) > 0) @foreach($memo as $data) @endforeach @endif
#ID {{__('memo::memo.date')}} {{__('memo::memo.memo number')}} {{__('memo::memo.customer name')}} {{__('memo::memo.customer po')}} {{__('memo::memo.staff')}} {{__('memo::memo.amount')}} {{__('memo::memo.action')}}
{{ $loop->iteration }} {{ date(AdminBaseDashboard::format_date(), strtotime($data->date)) }} {{$data->credit_memo_number}} {{ $data->memo_customer->customer_name }} {{ $data->memo_customer->mobile }} {{ $data->clerk->Name }} {{ AdminBaseDashboard::format_payment($data->payment->refund_amount) }} {{ __('memo::memo.print') }}
@endsection @section('javascript') @endsection