@extends('layouts.master') @section('title', 'Application Form List') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title')


@foreach($applicationform as $key=>$new_applicationform) @endforeach
No. Year/Semester Application Form Name Preview Status
{{ ++$key }} {{ $new_applicationform->applicationform_year }}/{{ $new_applicationform->applicationform_semester }} {{ $new_applicationform->applicationform_name }} @if($new_applicationform->applicationform_status == 'Active') {{ $new_applicationform->applicationform_status }} @else {{ $new_applicationform->applicationform_status }} @endif
@include('layouts.footer') @endsection