@extends('layouts.app') @section('content')
@include('coursefinder::program.partials.filter')
Explore Programs
@forelse ($programs as $item)
{{ config('constants.page_status_options')[$item->status] }}
Institution Logo

{{ $item->title }}

{{ $item->institution?->title }}

  • Code: {{ !empty($item->code) ? $item->code : 'N/A' }}
  • Fee: {{ !empty($item->fee) ? $item->fee : 'N/A' }}
  • Scholarship: {{ !empty($item->scholarship) ? $item->scholarship : 'N/A' }}
  • Program: {{ !empty($item->programlevel?->title) ? $item->programlevel?->title : 'N/A' }}
  • Duration: {{ !empty($item->year) ? $item->year : 'N/A' }}
  • @if (!empty($item->psw))
  • PSW: {{ !empty($item->psw) ? $item->psw : 'N/A' }}
  • @endif @if (!empty($item->coop?->title))
  • COOP: {{ !empty($item->coop?->title) ? $item->coop?->title : 'N/A' }}
  • @endif
@foreach ($item->tests as $index => $test)
{{ $test->title }}: {{ $test->pivot?->min_score }} ({{ $test->pivot?->band_score }})
@endforeach
@empty

No results found...

@endforelse {{ $programs->links() }}
@endsection @push('js') @endpush