@extends('layouts.master')
@section('title', __('user_portal.payouts'))
@section('content_title', __('user_portal.payouts'))
@section('main_content')
{{ __('accounting.invoice_no') }} |
{{ __('accounting.invoice_date') }} |
{{ __('accounting.total_amount') }} |
@php
$userType = getUserType(auth()->user()->id);
@endphp
@if ($userType == 'Student')
{{ __('accounting.total_discount') }} |
@elseif ($userType == 'Teacher' || $userType == 'Employee')
{{ __('accounting.total_bonus') }} |
@endif
{{ __('accounting.total_paid') }} |
{{ __('core.status') }} |
{{ __('core.action') }} |
@endsection
@push('script')
@endpush