/home/techb158/ileadtechnology.com/resources/views/admin/revenue
Edit: /home/techb158/ileadtechnology.com/resources/views/admin/revenue/completed.blade.php (2267B)
@extends('admin/layouts.master')
@section('title', 'All Completed - Instructor')
@section('body')
@include('admin.message')
| # |
{{ __('adminstaticword.User') }} |
{{ __('adminstaticword.Payer') }} |
{{ __('adminstaticword.PayTotal') }} |
{{ __('adminstaticword.OrderId') }} |
{{ __('adminstaticword.PayStatus') }} |
{{ __('adminstaticword.View') }} |
@foreach($payout as $pay)
|
{{$pay->user->fname}} |
{{$pay->payer_id}} |
{{$pay->pay_total}} |
@foreach($pay->order_id as $order)
@php
$id= App\Order::find($order);
@endphp
{{ $id['order_id'] }},
@endforeach
|
@if($pay->pay_status ==1)
{{ __('adminstaticword.Recieved') }}
@else
{{ __('adminstaticword.Pending') }}
@endif
|
{{ __('adminstaticword.View') }}
|
@endforeach
@endsection