@extends('admin.layouts.master') @section('title', 'Instructor Revenue - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('Instructor Revenue') }} @endslot @slot('menu1') {{ __('Instructor Revenue') }} @endslot @slot('button')
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('Instructor Revenue') }}
@foreach($revenue as $rev) @endforeach
# {{ __('adminstaticword.Enrolled') }}{{ __('adminstaticword.Courses') }} {{ __('adminstaticword.Instructor') }} {{ __('adminstaticword.TotalAmount') }} {{ __('adminstaticword.InstructorRevenue') }} {{ __('adminstaticword.Enrolled') }} {{ __('adminstaticword.Date') }}
id }} id='checkbox{{ $rev->id }}'> 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 @section('script') @endsection