����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.133.108.14 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/admin/organizations/ |
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>{{ __('Organizations') }}</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 Organizations') }} </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>{{ __('Pending Organizations') }}</h2> </div> <div class="customers__table all-course"> <table id="customers-table" class="row-border data-table-filter table-style"> <thead> <tr> <th>{{ __('Image') }}</th> <th>{{ __('Name') }}</th> <th>{{ __('Professional Title') }}</th> <th>{{ __('Phone Number') }}</th> <th>{{ __('Address') }}</th> <th>{{ __('CV') }}</th> <th>{{ __('Status') }}</th> <th class="text-center">{{ __('Action') }}</th> </tr> </thead> <tbody> @foreach ($organizations as $organization) <tr class="removable-item"> <td> <a href="{{ route('organizations.view', [$organization->uuid]) }}"> <img src="{{ getImageFile($organization->user ? $organization->user->image_path : '') }}" width="80"> </a> </td> <td> {{ $organization->name }} </td> <td> {{ $organization->professional_title }} </td> <td> {{ $organization->phone_number }} </td> <td> {{ $organization->address }} </td> <td><span><a href="{{ getVideoFile($organization->cv_file) }}" target="_blank">{{ $organization->cv_filename }}</a></span></td> <td> <span id="hidden_id" style="display: none">{{ $organization->id }}</span> <select name="status" class="status label-inline font-weight-bolder mb-1 badge badge-info"> <option value="1" @if ($organization->status == 1) selected @endif> {{ __('Approved') }}</option> <option value="2" @if ($organization->status == 2) selected @endif> {{ __('Blocked') }}</option> <option value="0" @if ($organization->status == 0) selected @endif> {{ __('Pending') }}</option> </select> </td> <td width="80"> <div class="action__buttons"> <a href="{{ route('organizations.view', [$organization->uuid]) }}" class="btn-action mr-30" title="View Details"> <img src="{{ asset('admin/images/icons/eye-2.svg') }}" alt="eye"> </a> <a href="{{ route('organizations.edit', [$organization->uuid]) }}" class="btn-action mr-30" title="Edit Details"> <img src="{{ asset('admin/images/icons/edit-2.svg') }}" alt="edit"> </a> <a href="javascript:void(0);" data-url="{{ route('organizations.delete', [$organization->uuid]) }}" title="Delete" class="btn-action deleteBtn"> <img src="{{ asset('admin/images/icons/trash-2.svg') }}" alt="trash"> </a> </div> </td> </tr> @endforeach </tbody> </table> <div class="mt-3"> {{ $organizations->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 src="{{ asset('admin/js/custom/instructor-delete.js') }}"></script> <script> 'use strict' $(".status").change(function() { var id = $(this).closest('tr').find('#hidden_id').html(); var status_value = $(this).val(); Swal.fire({ title: "{{ __('Are you sure to change status?') }}", text: "{{ __('You won`t 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('organizations.changeOrganizationStatus') }}", 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); } location.reload(); }, error: function(error) { toastr.options.positionClass = 'toast-bottom-right'; toastr.error('', JSON.parse(error.responseText).message); }, }); } else if (result.dismiss === "cancel") {} }); }); </script> @endpush