first commit
This commit is contained in:
1020
resources/views/registration/index.blade.php
Normal file
1020
resources/views/registration/index.blade.php
Normal file
File diff suppressed because it is too large
Load Diff
72
resources/views/registration/partials/table.blade.php
Normal file
72
resources/views/registration/partials/table.blade.php
Normal file
@ -0,0 +1,72 @@
|
||||
<tr style="background: @if(!empty($registration->leadcategory)) {{$registration->leadcategory->color_code}} @endif">
|
||||
<td class="text-center pt-3">
|
||||
<div class="custom-checkbox custom-control">
|
||||
<input type="checkbox" name="registrationcheckbox" data-checkboxes="mygroup" class="custom-control-input registrationcheckbox" id="{{$registration->id}}" value="{{$registration->id}}">
|
||||
<label for="{{$registration->id}}" class="custom-control-label"> </label>
|
||||
</div>
|
||||
</td>
|
||||
<td>{{++$key}}</td>
|
||||
<td class="tb-col">{{ Str::limit($registration->name, 47) }}</td>
|
||||
<td class="tb-col">{{ Str::limit($registration->email, 47) }}</td>
|
||||
<td>{{ Str::limit($registration->phone, 47) }}</td>
|
||||
<td>{{ Str::limit($registration->source, 47) }}</td>
|
||||
<td>{{ ucfirst($registration->preffered_location) }}</td>
|
||||
<td>{{ $registration->coupen_code }}</td>
|
||||
|
||||
<td >
|
||||
<ul class="d-flex flex-wrap gap g-3 ">
|
||||
<li>
|
||||
<a href="javascript: void(0);" data-registration_id="{{$registration->id}}" class="btn btn-flat btn-edit text-info btn-icon btn-soft btn-editCanvas" title="Edit Registration">
|
||||
<em class="icon ni ni-edit"></em>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('registration.show', $registration->id)}}" class="btn btn-flat text-primary btn-icon btn-soft" title="view">
|
||||
<em class="icon ni ni-eye"></em>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{route('registration.print', $registration->id)}}" class="btn text-success btn-flat btn btn-icon btn-soft" title="print">
|
||||
<em class="icon ni ni-printer"></em>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<button type="button" class="btn btn-flat btn text-danger btn-icon btn-soft" onclick="deleteThis(this); return false;" link="{{ route('registration.destroy', $registration->id) }}">
|
||||
<em class="icon ni ni-trash"></em>
|
||||
</button>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
|
||||
<a href="javascript: void(0);" data-registration_id="{{$registration->id}}" class="btn btn-sm btn-secondary btn-sm addfollowup mt-1" title="Add Follow Up">
|
||||
<em class="icon ni ni-plus-sm"></em> <span> Add Follow Up</span> @if(!empty($registration->getFollowUpCount($registration->id))) ({{$registration->getFollowUpCount($registration->id)->count()}}) @endif
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript: void(0);" data-registration_id="{{$registration->id}}" class="btn btn-info btn-sm sendsms mt-1" title="Add Follow Up">
|
||||
<em class="icon ni ni-msg"></em> <span> Send SMS</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript: void(0);" data-registration_id="{{$registration->id}}" class="btn btn-warning btn-sm btn-leadcategory mt-1" title="Add Lead Category">
|
||||
<em class="icon ni ni-grid-alt"></em> <span>Lead Category</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
{{-- @if($registration->enroll($registration->id) == null)
|
||||
<a href="#">
|
||||
<button type="button" class="btn btn-purple btn-sm btn-icon-toggle mt-1" onclick="proceedThis(this); return false;" link="{{ route('registration.proceed_for_admission', $registration->id) }}">
|
||||
Proceed To Enroll
|
||||
</button>
|
||||
</a>
|
||||
@endif --}}
|
||||
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
94
resources/views/registration/print.blade.php
Normal file
94
resources/views/registration/print.blade.php
Normal file
@ -0,0 +1,94 @@
|
||||
@extends('layouts.admin.admin')
|
||||
@section('title', 'Generate Invoice')
|
||||
|
||||
@section('page-specific-styles')
|
||||
<link href="{{ asset('css/dropify.min.css') }}" rel="stylesheet">
|
||||
<link href="{{ asset('resources/css/bootstrap-toggle.min.css') }}" rel="stylesheet">
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
|
||||
|
||||
<div class="nk-block">
|
||||
<div class="col-md-12 col-lg-10 mx-auto">
|
||||
<div class="card">
|
||||
<div class="col-md-12 pt-3">
|
||||
<div class="card-head d-flex p-2">
|
||||
<header class="media-group"></header>
|
||||
<div class="nk-chat-head-tools gap px-5">
|
||||
<a href="javascript:window.print()" class="btn btn-info nk-chat-head-tools gap px-2">
|
||||
<em class="icon ni ni-printer"></em>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="float-left">
|
||||
<img src="{{setting('image')}}" alt="" class="img-fluid" width="200">
|
||||
</div>
|
||||
|
||||
<div class="float-right mt-5">
|
||||
<h3 class="pt-2">Counselling Form : {{$registration->coupen_code}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Name: {{$registration->name}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Email: {{$registration->email}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Mobile: {{$registration->phone}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Highest Qualification: {{$registration->highest_qualification}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Highest Grade: {{$registration->highest_grade}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Highest Stream: {{$registration->highest_stream}}</h5>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<div class="float-left">
|
||||
<h5>Test Preparation: {{$registration->test_name}}</h5>
|
||||
</div>
|
||||
<div class="float-right">
|
||||
<h5>Test Score: {{$registration->test_score}}</h5>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-12 mt-2">
|
||||
<h5>Remarks:</h5>
|
||||
<textarea cols="60" rows="15">{{$registration->remarks}}</textarea>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<hr>
|
||||
<div class="row d-flex justify-content-center">
|
||||
<div class="col-md-12 ml-auto align-self-center">
|
||||
<div class="text-center text-muted"><small>Thank you very much for doing business with us. Thanks !</small></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
202
resources/views/registration/show.blade.php
Normal file
202
resources/views/registration/show.blade.php
Normal file
@ -0,0 +1,202 @@
|
||||
@extends('layouts.admin.admin')
|
||||
|
||||
@section('title', 'Registration')
|
||||
|
||||
@section('content')
|
||||
|
||||
asdfasdfdsaf
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="d-flex">
|
||||
<header class="text-capitalize pt-1">Registration Lists</header>
|
||||
</div>
|
||||
<div class="card mt-2 p-4">
|
||||
<div class="card-body p-5">
|
||||
<div class="container">
|
||||
<h4>Student Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<label>Student Name: <span>{{ $registration->name }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<label>Email: <span>{{ $registration->email }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<label>Phone: <span>{{ $registration->phone }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4 mt-1">
|
||||
<label>Intrested Country: <span>{{ $registration->intrested_for_country }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<label>Intrested Course: <span>{{ $registration->interested_course }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<label>Preffered Location: <span>{{ $registration->preffered_location }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<h4>Address: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>Zone: <span>{{ $registration->zone }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>State: <span>{{ $registration->state }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>City: <span>{{ $registration->city }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Address: <span>{{ $registration->address }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Nearest landmark: <span>{{ $registration->nearest_landmark }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<h4>SEE Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>SEE Year: <span>{{ $registration->see_year }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>SEE Grade: <span>{{ $registration->see_grade }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>SEE Stream: <span>{{ $registration->see_stream }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>SEE School: <span>{{ $registration->see_school }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<h4>+2 Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>+2 Year: <span>{{ $registration->plus2_year }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>+2 Grade: <span>{{ $registration->plus2_grade }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>+2 Stream: <span>{{ $registration->plus2_stream }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>+2 College: <span>{{ $registration->plus2_college }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<h4>Bachelor Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>Bachelor Year: <span>{{ $registration->bachelors_year }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Bachelor Grade: <span>{{ $registration->bachelors_grade }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Bachelor Stream: <span>{{ $registration->bachelors_stream }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Bachelor College: <span>{{ $registration->bachelors_college }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<h4>Highest Qualification Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>Highest Qualification Year:
|
||||
<span>{{ $registration->highest_qualification }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Highest Qualification Grade: <span>{{ $registration->highest_grade }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Highest Qualification Stream:
|
||||
<span>{{ $registration->highest_stream }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Highest Qualification College:
|
||||
<span>{{ $registration->highest_college }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<h4>Preparation Class Detail: </h4>
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<label>Preparation Class Year: <span>{{ $registration->preparation_class }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Preparation Class Score: <span>{{ $registration->preparation_score }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>BandScore: <span>{{ $registration->preparation_bandscore }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Date: <span>{{ $registration->preparation_date }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<label>Test Name: <span>{{ $registration->test_name }}</span></label>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<label>Test Score: <span>{{ $registration->test_score }}</span></label>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
|
||||
@push('styles')
|
||||
<style type="text/css">
|
||||
#accordion .card-head {
|
||||
cursor: n-resize;
|
||||
}
|
||||
</style>
|
||||
@endpush
|
||||
|
||||
@push('scripts')
|
||||
<script src="{{ asset('backend/js/libs/jquery-validation/dist/jquery.validate.min.js') }}"></script>
|
||||
<script src="{{ asset('backend/js/libs/jquery-validation/dist/additional-methods.min.js') }}"></script>
|
||||
<script src="{{ asset('backend/js/libs/jquery-ui/jquery-ui.min.js') }}"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('#example').DataTable();
|
||||
});
|
||||
</script>
|
||||
@endpush
|
Reference in New Issue
Block a user