@extends('backend.template') @section('content')
{{ label('SN.') }} | {{ label('title') }} | {{ label('alias') }} | {{ label('students') }} | {{ label('programs') }} | {{ label('application date') }} | {{ label('application deadline') }} | {{ label('Fee status') }} | {{ label('offer status') }} | {{ label('Action') }} |
---|---|---|---|---|---|---|---|---|---|
{{ $i++ }} | {{ $item->title }} |
{{ $item->alias }}
change alias
|
{!! getFieldData('tbl_students', 'name', 'student_id', $item->students_id) !!} | {!! getFieldData('tbl_programs', 'title', 'program_id', $item->programs_id) !!} | {{ $item->application_date }} | {{ $item->applicationfee_deadline }} | @if ($item->applicationfee_paid === 1) Fee paid @elseif ($item->applicationfee_paid === 0) Fee not paid @else not valid @endif | {{ $item->offer_status }} |
|