@extends('layouts.adminapp') @section('css') @stop @section('content')

Set Special Fee


@if(session('success'))
{{ session('success') }}
@endif @if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

New Special Fee

{{csrf_field()}}

**Record with same code will be updated.

 

List of Special Fees

@if(count($fees)>0) @foreach($fees as $fee) @endforeach @endif
System Course Code Amount Update Remove
{{$fee->course_code}}  @if($fee->amount > 0) {{number_format($fee->amount,2)}} @endif Update Remove
@stop @section('script') @stop