@php use App\Lib\MyHelper; $grantedFeature = session('granted_features'); @endphp @extends('layouts.main') @section('page-style') @endsection @section('page-script') @endsection @section('content')

@include('layouts.notifications')
@include('deals::manual_payment.filter')
@if(isset($conditions) && count($conditions) > 0)

Displaying search result with parameter(s):

@foreach($conditions as $row) @if(isset($row['subject'])) @if($row['subject'] == 'cancelled_at') @php $row['subject'] = 'decline_date' @endphp @elseif($row['subject'] == 'confirmed_at') @php $row['subject'] = 'accept_date' @endphp @endif

{{ucwords(str_replace("_"," ",$row['subject']))}} @if(isset($row['parameter']) && $row['parameter'] != "") {{str_replace("-"," - ",$row['operator'])}}{{str_replace("-"," - ",$row['parameter'])}} @else = {{str_replace("-"," - ",$row['operator'])}} @endif

@endif @endforeach

Reset

@endif
Manual Payment Deals
@if(!empty($list)) @foreach($list as $row) @endforeach @endif
Actions Deals Title Payment Date Payment Method Nominal Account Name
@if(empty($row['confirmed_at']) && empty($row['cancelled_at'])) confirm @else detail @endif {{ $row['deal']['deals_title'] }} {{ date('Y-m-d', strtotime($row['payment_date'])) }}{{ date('H:i:s', strtotime($row['payment_time'])) }} {{ $row['payment_method'] }} Rp {{ number_format($row['payment_nominal']) }} {{ $row['payment_account_name'] }}
Showing {{$from}} to {{$to}} of {{$total}} entries
@endsection