ok
Direktori : /home2/selectio/www/3-idiots/resources/views/admin-views/category/ |
Current File : /home2/selectio/www/3-idiots/resources/views/admin-views/category/view.blade.php |
@extends('layouts.back-end.app') @section('title', \App\CPU\translate('Category')) @push('css_or_js') @endpush @section('content') <div class="content container-fluid"> <!-- Page Title --> <div class="mb-3"> <h2 class="h1 mb-0 d-flex gap-10"> <img src="{{asset('/public/assets/back-end/img/brand-setup.png')}}" alt=""> {{\App\CPU\translate('Category')}} {{\App\CPU\translate('Setup')}} </h2> </div> <!-- End Page Title --> <!-- Content Row --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body" style="text-align: {{Session::get('direction') === "rtl" ? 'right' : 'left'}};"> <form action="{{route('admin.category.store')}}" method="POST" enctype="multipart/form-data"> @csrf @php($language=\App\Model\BusinessSetting::where('type','pnc_language')->first()) @php($language = $language->value ?? null) @php($default_lang = 'en') @php($default_lang = json_decode($language)[0]) <ul class="nav nav-tabs w-fit-content mb-4"> @foreach(json_decode($language) as $lang) <li class="nav-item text-capitalize"> <a class="nav-link lang_link {{$lang == $default_lang? 'active':''}}" href="#" id="{{$lang}}-link">{{ucfirst(\App\CPU\Helpers::get_language_name($lang)).'('.strtoupper($lang).')'}}</a> </li> @endforeach </ul> <div class="row"> <div class="col-lg-6"> <div> @foreach(json_decode($language) as $lang) <div class="form-group {{$lang != $default_lang ? 'd-none':''}} lang_form" id="{{$lang}}-form"> <label class="title-color">{{\App\CPU\translate('Category_Name')}}<span class="text-danger">*</span> ({{strtoupper($lang)}})</label> <input type="text" name="name[]" class="form-control" placeholder="{{\App\CPU\translate('New')}} {{\App\CPU\translate('Category')}}" {{$lang == $default_lang? 'required':''}}> </div> <input type="hidden" name="lang[]" value="{{$lang}}"> @endforeach <input name="position" value="0" class="d-none"> </div> <div class="form-group"> <label class="title-color" for="priority">{{\App\CPU\translate('priority')}} <span> <i class="tio-info-outined" title="{{\App\CPU\translate('the_lowest_number_will_get_the_highest_priority')}}"></i> </span> </label> <select class="form-control" name="priority" id="" required> <option disabled selected>{{\App\CPU\translate('Set_Priority')}}</option> @for ($i = 0; $i <= 10; $i++) <option value="{{$i}}" >{{$i}}</option> @endfor </select> </div> <div class="from_part_2"> <label class="title-color">{{\App\CPU\translate('Category_Logo')}}</label> <span class="text-info"><span class="text-danger">*</span> ( {{\App\CPU\translate('ratio')}} 1:1 )</span> <div class="custom-file text-left"> <input type="file" name="image" id="customFileEg1" class="custom-file-input" accept=".jpg, .png, .jpeg, .gif, .bmp, .tif, .tiff|image/*" required> <label class="custom-file-label" for="customFileEg1">{{\App\CPU\translate('choose')}} {{\App\CPU\translate('file')}}</label> </div> </div> </div> <div class="col-lg-6 mt-4 mt-lg-0 from_part_2"> <div class="form-group"> <center> <img class="upload-img-view" id="viewer" src="{{asset('public/assets/back-end/img/900x400/img1.jpg')}}" alt="image"/> </center> </div> </div> </div> <div class="d-flex flex-wrap gap-2 justify-content-end"> <button type="reset" id="reset" class="btn btn-secondary">{{\App\CPU\translate('reset')}}</button> <button type="submit" class="btn btn--primary">{{\App\CPU\translate('submit')}}</button> </div> </form> </div> </div> </div> </div> <div class="row mt-20" id="cate-table"> <div class="col-md-12"> <div class="card"> <div class="px-3 py-4"> <div class="row align-items-center"> <div class="col-sm-4 col-md-6 col-lg-8 mb-2 mb-sm-0"> <h5 class="text-capitalize d-flex gap-1"> {{ \App\CPU\translate('category_list')}} <span class="badge badge-soft-dark radius-50 fz-12">{{ $categories->total() }}</span> </h5> </div> <div class="col-sm-8 col-md-6 col-lg-4"> <!-- Search --> <form action="{{ url()->current() }}" method="GET"> <div class="input-group input-group-custom input-group-merge"> <div class="input-group-prepend"> <div class="input-group-text"> <i class="tio-search"></i> </div> </div> <input id="" type="search" name="search" class="form-control" placeholder="{{ \App\CPU\translate('search_here')}}" value="{{ $search }}" required> <button type="submit" class="btn btn--primary">{{\App\CPU\translate('search')}}</button> </div> </form> <!-- End Search --> </div> </div> </div> <div class="table-responsive"> <table style="text-align: {{Session::get('direction') === "rtl" ? 'right' : 'left'}};" class="table table-hover table-borderless table-thead-bordered table-nowrap table-align-middle card-table w-100"> <thead class="thead-light thead-50 text-capitalize"> <tr> <th>{{ \App\CPU\translate('SL')}}</th> <th class="text-center">{{ \App\CPU\translate('Category')}} {{ \App\CPU\translate('Image')}}</th> <th>{{ \App\CPU\translate('name')}}</th> <th>{{\App\CPU\translate('Priority')}}</th> <th class="text-center">{{ \App\CPU\translate('home_category_status')}}</th> <th class="text-center">{{ \App\CPU\translate('action')}}</th> </tr> </thead> <tbody> @foreach($categories as $key=>$category) <tr> <td >{{$category['id']}}</td> <td class="text-center"> <img class="rounded" width="64" onerror="this.src='{{asset('public/assets/front-end/img/image-place-holder.png')}}'" src="{{asset('storage/app/public/category')}}/{{$category['icon']}}"> </td> <td>{{$category['name']}}</td> <td> {{$category['priority']}} </td> <td class="text-center"> <label class="switcher mx-auto"> <input type="checkbox" class="switcher_input category-status" id="{{$category['id']}}" {{$category->home_status == 1?'checked':''}}> <span class="switcher_control"></span> </label> </td> <td> <div class="d-flex justify-content-center gap-10"> <a class="btn btn-outline-info btn-sm square-btn" title="{{ \App\CPU\translate('Edit')}}" href="{{route('admin.category.edit',[$category['id']])}}"> <i class="tio-edit"></i> </a> <a class="btn btn-outline-danger btn-sm delete square-btn" title="{{ \App\CPU\translate('Delete')}}" id="{{$category['id']}}"> <i class="tio-delete"></i> </a> </div> </td> </tr> @endforeach </tbody> </table> </div> <div class="table-responsive mt-4"> <div class="d-flex justify-content-lg-end"> <!-- Pagination --> {{$categories->links()}} </div> </div> @if(count($categories)==0) <div class="text-center p-4"> <img class="mb-3 w-160" src="{{asset('public/assets/back-end')}}/svg/illustrations/sorry.svg" alt="Image Description"> <p class="mb-0">{{\App\CPU\translate('no_data_found')}}</p> </div> @endif </div> </div> </div> </div> @endsection @push('script') <script> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script> <script> $(".lang_link").click(function (e) { e.preventDefault(); $(".lang_link").removeClass('active'); $(".lang_form").addClass('d-none'); $(this).addClass('active'); let form_id = this.id; let lang = form_id.split("-")[0]; console.log(lang); $("#" + lang + "-form").removeClass('d-none'); if (lang == '{{$default_lang}}') { $(".from_part_2").removeClass('d-none'); } else { $(".from_part_2").addClass('d-none'); } }); $(document).ready(function () { $('#dataTable').DataTable(); }); </script> <script> $(document).on('change', '.category-status', function () { var id = $(this).attr("id"); if ($(this).prop("checked") == true) { var status = 1; } else if ($(this).prop("checked") == false) { var status = 0; } $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') } }); $.ajax({ url: "{{route('admin.category.status')}}", method: 'POST', data: { id: id, home_status: status }, success: function (data) { if(data.success == true) { toastr.success('{{\App\CPU\translate('Status updated successfully')}}'); } } }); }); </script> <script> $(document).on('click', '.delete', function () { var id = $(this).attr("id"); Swal.fire({ title: '{{\App\CPU\translate('Are_you_sure')}}?', text: "{{\App\CPU\translate('You_will_not_be_able_to_revert_this')}}!", showCancelButton: true, type: 'warning', confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: '{{\App\CPU\translate('Yes')}}, {{\App\CPU\translate('delete_it')}}!', reverseButtons: true }).then((result) => { if (result.value) { $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content') } }); $.ajax({ url: "{{route('admin.category.delete')}}", method: 'POST', data: {id: id}, success: function () { toastr.success('{{\App\CPU\translate('Category_deleted_Successfully.')}}'); location.reload(); } }); } }) }); </script> <script> function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#viewer').attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } $("#customFileEg1").change(function () { readURL(this); }); </script> @endpush