|
-
@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']) }}]
|