����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.219.247.127 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirm.gltechlimited.com/resources/views/admin/student/ |
Upload File : |
@extends('layouts.admin') @section('content') <!-- Page content area start --> <div class="page-content"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="breadcrumb__content"> <div class="breadcrumb__content__left"> <div class="breadcrumb__title"> <h2>{{ __('Students') }}</h2> </div> </div> <div class="breadcrumb__content__right"> <nav aria-label="breadcrumb"> <ul class="breadcrumb"> <li class="breadcrumb-item"><a href="{{route('admin.dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item active" aria-current="page">{{ __('Pending student') }}</li> </ul> </nav> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="customers__area bg-style mb-30"> <div class="item-title d-flex justify-content-between"> <h2>{{ __('All Students') }}</h2> </div> <div class="customers__table"> <table id="customers-table" class="row-border data-table-filter table-style"> <thead> <tr> <th>{{__('Image')}}</th> <th>{{__('Details')}}</th> <th>{{__('Country')}}</th> <th>{{__('Address')}}</th> <th>{{ __('Total Course Enroll') }}</th> <th>{{__('Status')}}</th> <th>{{__('Action')}}</th> </tr> </thead> <tbody> @foreach($students as $student) <tr class="removable-item"> <td> <img src="{{getImageFile($student->user ? @$student->user->image_path : '')}}" width="80"> </td> <td> {{__('Name')}}: {{$student->name}}<br> {{__('Email')}}: {{$student->user->email}}<br> {{__('Phone')}}: {{$student->phone_number ?? @$student->user->phone_number}}<br> </td> <td>{{$student->country ? $student->country->country_name : '' }}</td> <td>{{$student->address}}</td> <td>{{ studentCoursesCount($student->user_id) }}</td> <td> <span id="hidden_id" style="display: none">{{$student->id}}</span> <select name="status" class="status label-inline font-weight-bolder mb-1 badge badge-info"> <option value="0" @if($student->status == 0) selected @endif>{{ __('PENDING') }}</option> <option value="1" @if($student->status == 1) selected @endif>{{ __('Approved') }}</option> </select> </td> <td> <div class="action__buttons"> <a href="{{route('student.view', [$student->uuid])}}" class="btn-action mr-30" title="View Details"> <img src="{{asset('admin/images/icons/eye-2.svg')}}" alt="eye"> </a> <a href="{{route('student.edit', [$student->uuid])}}" class="btn-action mr-30" title="Edit Details"> <img src="{{asset('admin/images/icons/edit-2.svg')}}" alt="edit"> </a> <button class="ms-3"> <span data-formid="delete_row_form_{{$student->id}}" class="deleteItem"> <img src="{{asset('admin/images/icons/trash-2.svg')}}" alt="trash"> </span> </button> <form action="{{route('student.delete', [$student->uuid])}}" method="post" id="delete_row_form_{{ $student->id }}"> {{ method_field('DELETE') }} <input type="hidden" name="_token" value="{{ csrf_token() }}"> </form> </div> </td> </tr> @endforeach </tbody> </table> <div class="mt-3"> {{$students->links()}} </div> </div> </div> </div> </div> </div> </div> <!-- Page content area end --> @endsection @push('style') <link rel="stylesheet" href="{{asset('admin/css/jquery.dataTables.min.css')}}"> @endpush @push('script') <script src="{{asset('admin/js/jquery.dataTables.min.js')}}"></script> <script src="{{asset('admin/js/custom/data-table-page.js')}}"></script> <script> 'use strict' $(".status").change(function () { var id = $(this).closest('tr').find('#hidden_id').html(); var status_value = $(this).closest('tr').find('.status option:selected').val(); Swal.fire({ title: '{{ __("Are you sure to change status?") }}', text: '{{ __("You wont be able to revert this!") }}', icon: "warning", showCancelButton: true, confirmButtonText: '{{ __("Yes, Change it!") }}', cancelButtonText:'{{__("No, cancel!")}}', reverseButtons: true }).then(function (result) { if (result.value) { $.ajax({ type: "POST", url: "{{route('admin.student.changeStudentStatus')}}", data: {"status": status_value, "id": id, "_token": "{{ csrf_token() }}",}, datatype: "json", success: function (data) { toastr.options.positionClass = 'toast-bottom-right'; toastr.success('', '{{ __("Student status has been updated") }}'); }, error: function () { alert("Error!"); }, }); } else if (result.dismiss === "cancel") { } }); }); </script> @endpush