@extends('backend.layouts.master') @section('section-title', 'Product') @section('page-title', 'Pay Customer') @if (check_permission('payment.pay-customer-store')) @section('action-button') Pay Customer @endsection @endif @section('content')
Reset Print
@forelse($payment as $data) {{-- delete modal --}} @csrf @method('DELETE') @empty @endforelse
# Date Wallet Type Pay Type Amount Discount Amount Action
{{ $loop->index + 1 }} {{ date('d-m-Y',strtotime($data->date)) }} {{ $data->wallet_type }} {{ $data->pay_type }} ({{ $data->transaction->customer->name }}) {{ $data->amount }} @if($data->discount_amount == null ) 0.00 @endif @if($data->discount_amount != null) {{ $data->discount_amount }} @endif
No Data Available
{{-- --}}
@include('backend.pages.payment.customer_model') @endsection @push('js') {{-- Payment Options --}} @endpush