@extends('layouts.master') @section('content')
Fee Types
@can('accounting-finance.fees-type.create') @endcan
@php $sn = 0; @endphp @foreach ($feeTypes as $feeType) @endforeach
SN Title Code Description Actions
{{ ++$sn }} {{ $feeType->title }} {{ $feeType->code }} {{ $feeType->description ?? '--' }} @can('accounting-finance.fees-type.edit') {{-- @if ($feeType->code=="TUITION") @else --}} {{-- @endif --}} @endcan @can('accounting-finance.fees-type.delete') @if ($feeType->code=="TUITION" || $feeType->code=="TRANSPORT" || $feeType->code=="HOSTEL") @else
@csrf @method('DELETE')
@endif @endcan
@stop