Raffales-LMS/resources/views/crud/generated/programs/show.blade.php
2024-04-16 15:43:24 +05:45

29 lines
3.5 KiB
PHP

@extends('backend.template')
@section('content')
<div class='card'>
<div class='card-header d-flex justify-content-between align-items-center'>
<h2><?php echo label('View Details'); ?></h2>
<?php createButton("btn-primary btn-cancel","","Back to List",route('programs.index')); ?>
</div>
<div class='card-body'>
<p><b>Institutions Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->institutions_id}}</span></p><p><b>Title :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->title}}</span></p><p><b>Alias :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->alias}}</span></p><p><b>Description :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->description}}</span></p><p><b>Program Level :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->program_level}}</span></p><p><b>Years :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->years}}</span></p><p><b>Psw :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->psw}}</span></p><p><b>Prospects :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->prospects}}</span></p><p><b>Intake :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->intake}}</span></p><p><b>Institution :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->institution}}</span></p><p><b>City :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->city}}</span></p><p><b>Application Open :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->application_open}}</span></p><p><b>Application Deadline :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->application_deadline}}</span></p><p><b>Level :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->level}}</span></p><p><b>Min Level :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->min_level}}</span></p><p><b>Min Level Faculty :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->min_level_faculty}}</span></p><p><b>Min Level Score :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->min_level_score}}</span></p><p><b>Min Level Passout :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->min_level_passout}}</span></p><p><b>Min Level Optional Requirement :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->min_level_optional_requirement}}</span></p><p><b>Prof Test Required :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->prof_test_required}}</span></p><p><b>Prof Test Accepted :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->prof_test_accepted}}</span></p><p><b>Prof Test Min Score :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->prof_test_min_score}}</span></p><p><b>Prof Test Band Score :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->prof_test_band_score}}</span></p><p><b>Display Order :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->display_order}}</span></p><p><b>Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span
class="{{$data->status == 1 ? 'text-success' : 'text-danger'}}">{{$data->status == 1 ? 'Active' : 'Inactive'}}</span></p><p><b>Remarks :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->remarks}}</span></p><p><b>Createdby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->createdby}}</span></p><p><b>Updatedby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->updatedby}}</span></p><div class="d-flex justify-content-between">
<div>
<p><b>Created On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->created_at}}</span></p>
<p><b>Created By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->createdBy}}</span></p>
</div>
<div>
<p><b>Updated On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updated_at}}</span></p>
<p><b>Updated By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updatedBy}}</span></p>
</div>
</div>
</div>
</div>
@endSection