@extends('dashboard.layout.mainlayout') @section('content')
--}}
# | @lang('user.cat_name') | @lang('user.subcat_name') | @lang('user.image') | @lang('user.slider_link') | @lang('user.desc') | @lang('user.operations') |
---|---|---|---|---|---|---|
{{ $index +1 }} | @if (App::isLocale('en') && $item->cat_id != NULL) {{App\Models\Category::where('id',$item->cat_id)->select('name_en')->first()->name_en}} @elseif(App::isLocale('ar') && $item->cat_id != NULL) {{App\Models\Category::where('id',$item->cat_id)->select('name_ar')->first()->name_ar}} @else {{Null}} @endif | @if (App::isLocale('en') && $item->subcat_id != NULL) {{App\Models\Subcategory::where('id',$item->subcat_id)->select('name_en')->first()->name_en}} @elseif(App::isLocale('ar') && $item->subcat_id != NULL) {{App\Models\Subcategory::where('id',$item->subcat_id)->select('name_ar')->first()->name_ar}} @else {{Null}} @endif |
|
{{$item->link}} | {{$item->desc}} | @if(Auth::guard('admin')->user()->hasPermission('sliders_update')) @lang('user.edit') @else @lang('user.edit') @endif @if(Auth::guard('admin')->user()->hasPermission('sliders_delete')) @else @endif |