@extends('layouts.master') @section('title', 'Express54') @section('content')

Payment

@if (Session('success')) @endif @if (Session('error')) @endif
@foreach ($student_data as $key => $student) @endforeach
@lang('') Name Email Field Year of Study Institution Total Amount Minister Superviser Approval First Payment Status Second Payment Status Third Payment Status Payment
{{ $key + 1 }} {{ $student->name }} {{ $student->email }} {{ $student->field }} {{ $student->year_of_study }} {{ $student->institution }} {{ $student->total_amount }} {{ $student->minister_supervisor_approval }} {{$student->first_payment_status == 'first payment done'? 'Payment Done' :'Pending' }} {{$student->second_payment_status ?? '' }} {{$student->third_payment_status ?? '' }} @if($student->minister_supervisor_approval === 'approve' ) @else Waiting for approvel @endif
@endsection