@extends('user.layout') @php $userDefaultLang = \App\Models\User\Language::where([ ['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1], ])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); $selLang = \App\Models\Language::where([ ['code', \Illuminate\Support\Facades\Session::get('currentLangCode')], ])->first(); @endphp @if (!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
| {{ __('Name') }} | {{ __('Category') }} | {{ __('Status') }} | {{ __('Actions') }} | |
|---|---|---|---|---|
| {{ convertUtf8($category->name) }} | {{ convertUtf8($category->category->name) }} |
@if ($category->status == 1)
{{ __('Active') }}@else{{ __('Deactive') }}@endif |
{{ __('Edit') }} |