@extends('adminlte::page') @section('content') @section('content_header', __('admin.payment_notifications'))
@if(count($errors) > 0)
@foreach($errors->all() as $error)

{{$error}}

@endforeach
@endif @if(Session::has('success'))

{{ Session::get('success') }}

@endif
@foreach($bank_payments as $row) @endforeach
@lang('admin.order_id') @lang('admin.sender_name') @lang('admin.price') @lang('admin.status') @lang('admin.date') @lang('admin.view')
{{$row->order_id}} {{$row->sender_name}} {{$row->currency_symbol}}{{$row->price}} @if($row->checked == '0') @lang('admin.pending') @elseif($row->checked == '1') @lang('admin.approved') @else @lang('admin.rejected') @endif {{\Carbon\Carbon::parse($row->created_at)->translatedFormat('M d, Y')}} @if($row->checked == '0')@lang('admin.view')@else@lang('admin.view')@endif
@if($bank_payments->isEmpty())
@lang('admin.no_record').
@endif
{{ $bank_payments->onEachSide(1)->links() }} @endsection