@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
{{-- bradecrumb Area S t a r t --}} {{-- bradecrumb Area E n d --}}

{{ $data['title'] }}

@if (hasPermission('fees_master_create')) {{ ___('common.add') }} @endif
@if (hasPermission('fees_master_update') || hasPermission('fees_master_delete')) @endif @forelse ($data['fees_masters'] as $key => $row) @if (hasPermission('fees_master_update') || hasPermission('fees_master_delete')) @endif @empty @endforelse
{{ ___('common.sr_no') }} {{ ___('fees.group') }} {{ ___('fees.type') }} {{ ___('fees.due_date') }} {{ ___('fees.amount') }} ({{ Setting('currency_symbol') }}) {{ ___('fees.fine_type') }} {{ ___('fees.percentage') }} {{ ___('fees.fine_amount') }} ({{ Setting('currency_symbol') }}) {{ ___('common.status') }}{{ ___('common.action') }}
{{ ++$key }} {{ $row->group->name }} {{ $row->type->name }} {{ dateFormat($row->due_date) }} {{ $row->amount }} @if ($row->fine_type == 0) {{ ___('fees.none') }} @elseif($row->fine_type == 1) {{ ___('fees.percentage') }} @elseif($row->fine_type == 2) {{ ___('fees.fixed') }} @endif {{ $row->percentage }} {{ $row->fine_amount }} @if ($row->status == App\Enums\Status::ACTIVE) {{ ___('common.active') }} @else {{ ___('common.inactive') }} @endif

{{ ___('common.No data available') }}

{{ ___('common.Please add new entity regarding this table') }}

@endsection @push('script') @include('backend.partials.delete-ajax') @endpush