@extends('layouts.backend.app') @section('content') @include('layouts.backend.partials.headersection',['title'=>'Payout History'])
{{ __('Transaction Id') }} | {{ __('Amount') }} | {{ __('Method') }} | {{ __('Payment Status') }} | {{ __('Requested At') }} | {{ __('View') }} |
---|---|---|---|---|---|
#{{ $row->id }} | {{ number_format($row->amount) }} | {{ $row->payment_mode }} | @if($row->status==0) {{ __('Canceled') }} @elseif($row->status==1) {{ __('Completed') }} @elseif($row->status==2) {{ __('Pending') }} @endif | {{ $row->created_at->diffforHumans() }} | |
{{ __('Transaction Id') }} | {{ __('Amount') }} | {{ __('Method') }} | {{ __('Payment Status') }} | {{ __('Requested At') }} | {{ __('View') }} |