@extends('frontend.index') @section('content')
@if(count($data)>0)
  • @if($data[0]->type == 1) @lang('frontend.prospectus') @elseif($data[0]->type == 2) @lang('frontend.admission_rules') @elseif($data[0]->type == 3) @lang('frontend.admission_procedure') @elseif($data[0]->type == 4) @lang('frontend.admission_test_result') @else @lang('frontend.admission_test_questions') @endif
  • @php $i = 1; @endphp @if(isset($data)) @foreach($data as $d) @endforeach @endif
    @lang('frontend.sl') @lang('frontend.release_date') @lang('frontend.title') @lang('frontend.download')
    {{ $i++ }} {{ date('d M Y', strtotime($d->date)); }} {{ $d->title }}
@else Not Found... @endif
@endsection