@extends('layouts.studentapp') @section('content')

{{ $Student->name }}'s Fine Details

@php $si = 0; @endphp @foreach ($Student->Fines as $Fine) @endforeach
Si No Date Fine Type Amount Reason Date Description
{{ ++$si }} @if ($Fine->date) {{ date('d-m-Y', strtotime($Fine->date)) }} @endif {{ $Fine->FineType->type }} {{ $Fine->Amount }} @if ($Fine->reason_date) {{ date('d-m-Y', strtotime($Fine->reason_date)) }} @endif {{ $Fine->description }}
@endsection