File "categories.blade.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/admin/tutor_booking/categories.blade.php
File size: 7.65 KB
MIME-type: text/html
Charset: utf-8
@extends('layouts.admin')
@push('title', get_phrase('Categories'))
@push('meta')
@endpush
@push('css')
@endpush
@section('content')
<div class="ol-card radius-8px">
<div class="ol-card-body my-3 py-12px px-20px">
<div class="d-flex align-items-center justify-content-between gap-3 flex-wrap flex-md-nowrap">
<h4 class="title fs-16px">
<i class="fi-rr-settings-sliders me-2"></i>
{{ get_phrase('Tutor categories') }} <span class="text-muted">({{ $categories->count() }})</span>
</h4>
<a onclick="ajaxModal('{{ route('modal', ['admin.tutor_booking.category_add', 'parent' => 0]) }}', '{{ get_phrase('Add new category') }}')" href="#" class="btn ol-btn-outline-secondary d-flex align-items-center cg-10px">
<span class="fi-rr-plus"></span>
<span>{{ get_phrase('Add new category') }}</span>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-xl-7">
<div class="ol-card p-4">
<div class="ol-card-body">
<div class="col-lg-12">
@if ($categories->count() > 0)
<div class="admin-tInfo-pagi d-flex justify-content-md-between justify-content-center align-items-center gr-15 flex-wrap">
<p class="admin-tInfo">
{{ get_phrase('Showing') . ' ' . count($categories) . ' ' . get_phrase('of') . ' ' . $categories->total() . ' ' . get_phrase('data') }}
</p>
</div>
<div class="table-responsive package_list overflow-auto" id="package_list">
<table class="eTable eTable-2 print-table table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">{{ get_phrase('Name') }}</th>
<th scope="col" class="text-center">{{ get_phrase('Status') }}</th>
<th scope="col" class="print-d-none text-center">{{ get_phrase('Action') }}</th>
</tr>
</thead>
<tbody>
@foreach ($categories as $key => $category)
<tr>
<th scope="row">
<p class="row-number">{{ ++$key }}</p>
</th>
<td>
<div class="d-flex align-items-center">
<div class="ms-1 mt-1">
<h4 class="title fs-14px">
<a href="">
{{ ucfirst($category->name) }}
</a>
</h4>
</div>
</div>
</td>
<td>
<div class="sub-title2 text-12px text-center">
@if($category['status'] == 1)
<p>{{ get_phrase('Active') }} </p>
@else
<p>{{ get_phrase('Deactive') }} </p>
@endif
</div>
</td>
<td class="print-d-none text-center">
<div class="dropdown ol-icon-dropdown ol-icon-dropdown-transparent d-flex justify-content-center">
<button class="btn ol-btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<span class="fi-rr-menu-dots-vertical"></span>
</button>
<ul class="dropdown-menu">
<li>
<a href="#" class="dropdown-item" onclick="ajaxModal('{{ route('modal', ['admin.tutor_booking.category_edit', 'id' => $category->id]) }}', '{{ get_phrase('Edit subject') }}')"> {{ get_phrase('Edit') }}</a>
</li>
<li>
@if($category['status'] == 1)
<a class="dropdown-item" href="{{ route('admin.tutor_category_status', ['id' => $category->id, 'status' => 'deactive']) }}">{{ get_phrase('Deactive') }}</a>
@else
<a class="dropdown-item" href="{{ route('admin.tutor_category_status', ['id' => $category->id, 'status' => 'active']) }}">{{ get_phrase('Active') }}</a>
@endif
</li>
<li>
<a class="dropdown-item" onclick="confirmModal('{{ route('admin.tutor_category_delete', $category->id) }}')">{{ get_phrase('Delete') }}</a>
</li>
</ul>
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="admin-tInfo-pagi d-flex justify-content-md-between justify-content-center align-items-center gr-15 flex-wrap">
<p class="admin-tInfo">
{{ get_phrase('Showing') . ' ' . count($categories) . ' ' . get_phrase('of') . ' ' . $categories->total() . ' ' . get_phrase('data') }}
</p>
{{ $categories->links() }}
</div>
@else
@include('admin.no_data')
@endif
</div>
</div> <!-- end card body-->
</div> <!-- end card -->
</div><!-- end col-->
</div>
@endsection