@extends('admin/layouts.master') @section('title', 'Instructor Revenue - Admin') @section('body')
@include('admin.message')

{{ __('adminstaticword.InstructorRevenue') }}

@foreach($revenue as $rev) @endforeach
# {{ __('adminstaticword.Enrolled') }}{{ __('adminstaticword.Courses') }} {{ __('adminstaticword.Instructor') }} {{ __('adminstaticword.TotalAmount') }} {{ __('adminstaticword.InstructorRevenue') }} {{ __('adminstaticword.Enrolled') }} {{ __('adminstaticword.Date') }}
1 {{ $rev->courses->title }} {{ $rev->courses->user->fname }} @if($gsetting['currency_swipe'] == 1) {{ $rev->total_amount }} @else {{ $rev->total_amount }} @endif @if($gsetting['currency_swipe'] == 1) {{ $rev->instructor_revenue }} @else {{ $rev->instructor_revenue }} @endif {{ date('d-m-Y', strtotime($rev->created_at)) }}
@endsection