@extends('layouts.dashboard') @section('title-content') {{ config('app.name') }} College Schools| Index @endsection @section('content')

Registration : Semester One Registration

Here are the semester one registration status.Please select the appropriate action to continue.

Registration Preparation Status

Current Status: @if (is_null($reg_sem_one)) Semester One Registration is Not Prepared @else Semester One Registration is Currently Prepared @endif
  • @if (is_null($reg_sem_one)) {!! Form::open([ 'route' => 'faculty-settings.publish-sem-one', 'class' => 'publish-sem1', 'method' => 'POST', 'role' => 'form', ]) !!} {!! Form::button('[Prepare Registration]', ['type' => 'submit', 'class' => 'btn btn-sm btn-primary p-2']) !!} {!! Form::close() !!} @else {!! Form::open([ 'route' => 'faculty-settings.un-publish-sem-one', 'class' => 'publish-sem1', 'method' => 'POST', 'role' => 'form', ]) !!} {!! Form::button('[Un-Prepare]', ['type' => 'submit', 'class' => 'btn btn-sm btn-primary p-2']) !!} {!! Form::close() !!} @endif [{{ link_to(route('dashboard'), 'View Publish History', ['class' => 'p-2']) }}]
@endsection @section('scripts') @endsection