@extends('admin.template.master') @section('title')

Bkash Payment List all successful transaction

@endsection @section('main-content')
@if(Session::has('message'))

Succes!

{{Session('message')}}
@endif

List

@foreach($payments as $payment) @endforeach
Order ID Reg Mobile Ref ID Date
{!! $payment->order_id !!} {!! $payment->mobile !!} {!! $payment->ref_id !!} {!! date('d M Y', strtotime($payment->updated_at)) !!}
@endsection