@extends('layouts.instructor') @push('title', get_phrase('Payout report')) @push('meta')@endpush @push('css')@endpush @section('content')
{{ currency($balance, 2) }}
{{ currency($total_payout, 2) }}
{{ currency($payout_request->amount ?? 0, 2) }}
{{ get_phrase('Showing') . ' ' . count($payout_reports) . ' ' . get_phrase('of') . ' ' . $payout_reports->total() . ' ' . get_phrase('data') }}
| # | {{ get_phrase('Payout amount') }} | {{ get_phrase('Payment type') }} | {{ get_phrase('Date processed') }} |
|---|---|---|---|
| {{ ++$key }} |
{{ currency($row->amount, 2) }}{{ date('D, d M Y', strtotime($row->created_at)) }} |
@if ($row->status == 0)
{{ get_phrase('Pending') }} @endif {{ ucfirst($row->payment_type) }} |
@if ($row->status == 0)
{{ get_phrase('Pending') }} @else {{ date('D, d M Y', strtotime($row->updated_at)) }} @endif |
{{ get_phrase('Showing') . ' ' . count($payout_reports) . ' ' . get_phrase('of') . ' ' . $payout_reports->total() . ' ' . get_phrase('data') }}
{{ $payout_reports->links() }}