@extends('layouts.app') @section('title') Student Refunds @endsection @section('content')
@if (session('error')) @elseif(session('success')) @endif
Student Refunds

{{-- column1 --}}
  • Student Name: {{$student->first_name}} {{$student->last_name}}
  • Student Number: {{$student->student_no}}
  • NRC: {{$student->nrc_passport}}
  • Phone: {{$student->phone}}
  • Email: {{$student->email}}
{{-- column1 --}}
  • Program of Study: {{$student->program_name}}
  • Program Code: {{$student->program_code}}
  • Intake Year: {{ucwords($student->entry_year)}}
  • Current Year: {{ucwords($student_current_year)}}
  • Current Session: {{ucwords($student_current_session)}}
Student Refunds
@foreach ($refunds as $refund) @endforeach
Date Student No Amount Reason
{{ date('d-m-Y', strtotime($refund->created_at)) }} {{$refund->student_no}} {{$refund->amount}} {{$refund->reason}}
@endsection