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

29 lines
5.0 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('registrations.index')); ?>
</div>
<div class='card-body'>
<p><b>Campaigns Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->campaigns_id}}</span></p><p><b>Sources Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->sources_id}}</span></p><p><b>Countries Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->countries_id}}</span></p><p><b>Provinces Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->provinces_id}}</span></p><p><b>Districts Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->districts_id}}</span></p><p><b>Cities Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->cities_id}}</span></p><p><b>Leadcategories Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->leadcategories_id}}</span></p><p><b>Agents Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->agents_id}}</span></p><p><b>Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->name}}</span></p><p><b>Email :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->email}}</span></p><p><b>Phone :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->phone}}</span></p><p><b>Mobile :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->mobile}}</span></p><p><b>Address :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->address}}</span></p><p><b>Qualifications Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->qualifications_id}}</span></p><p><b>See Year :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->see_year}}</span></p><p><b>See Grade :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->see_grade}}</span></p><p><b>See Stream :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->see_stream}}</span></p><p><b>See School :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->see_school}}</span></p><p><b>Plus2 Year :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->plus2_year}}</span></p><p><b>Plus2 Grade :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->plus2_grade}}</span></p><p><b>Plus2 Stream :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->plus2_stream}}</span></p><p><b>Plus2 College :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->plus2_college}}</span></p><p><b>Bachelors Year :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->bachelors_year}}</span></p><p><b>Bachelors Grade :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->bachelors_grade}}</span></p><p><b>Bachelors Stream :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->bachelors_stream}}</span></p><p><b>Bachelors College :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->bachelors_college}}</span></p><p><b>Highest Qualification :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->highest_qualification}}</span></p><p><b>Highest Grade :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->highest_grade}}</span></p><p><b>Highest Stream :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->highest_stream}}</span></p><p><b>Highest College :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->highest_college}}</span></p><p><b>Preparation Class :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->preparation_class}}</span></p><p><b>Preparation Score :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->preparation_score}}</span></p><p><b>Preparation Bandscore :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->preparation_bandscore}}</span></p><p><b>Preparation Date :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->preparation_date}}</span></p><p><b>Preffered Location :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->preffered_location}}</span></p><p><b>Intrested For Country :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->intrested_for_country}}</span></p><p><b>Intrested Course :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->intrested_course}}</span></p><p><b>User Agent :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->user_agent}}</span></p><p><b>Tags :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->tags}}</span></p><p><b>Coupen Code :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->coupen_code}}</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