@extends('layouts.app') @section('styles') @endsection @section('content')
{{ __('report.student-fees') }} : {{$studentName ?? ''}}
{{-- --}} @if (auth()->user()->role_id == 1 || auth()->user()->hasrole('registrar') ) @endif @if (isset($studentFees)) @foreach ($studentFees as $studentFee) {{-- --}} @if (auth()->user()->hasRole('admin') || auth()->user()->hasRole('registrar')) @if ($studentFee->paid_amount == 0) @else @endif @endif @endforeach @else @endif
{{ __('fee.code') }} {{ __('fee.type') }} {{ __('fee.note') }} {{ __('fee.amount') }} {{ __('fee.paid') }} {{ __('fee.penalty') }} {{ __('fee.created-at') }} {{ __('fee.actions') }}
{{ $studentFee->payment_reference }}
{{ $studentFee->semester_id }}
{{ $studentNotes }} {{-- {{ $studentFee->payment_amount + $studentFee->pivot->penalty }} --}} {{ $studentFee->payment_amount }} {{ $studentFee->paid_amount }} {{ $studentFee->pivot->penalty }} {{ $studentFee->created_at }}
no data
@endsection @section('scripts') @endsection