@extends('layouts.admin') @section('header-content') @endsection @section('content')
Filter @if( Auth::user()->can('modify_recovery')) @endif
All Payments
@if(!empty($payments[0]))
@if( Auth::user()->can('modify_recovery')) @endif @foreach($payments as $key=>$payment) @if( Auth::user()->can('modify_recovery')) @endif @endforeach
# Customers Payment Collect By Payment Type Amount Payment Date RemarksAction
{{$key+1}} @if(isset($payment->shop->name)) {{$payment->shop->name}} @endif @if(isset($payment->user->firstname)){{$payment->user->firstname.' '.$payment->user->lastname}} @endif {{$payment->payment_type}} {{$payment->amount}} {{$payment->promise_cheque_date}} {{strip_tags($payment->remarks)}}
  • {{--
  • --}}
{!! method_field('DELETE') !!} {!! csrf_field() !!}

{{ $payments->appends(['search_other' => Request::get('search_other'),'sale_officer'=> Request::get('sale_officer') ])->links() }}
@else

No Records Found

@endif
@endsection @section('footer-content') @endsection