@extends('panel.layouts.layout') @section('content')
@lang('home.categories_list')
@lang('home.home') / @lang('home.categories') / @lang('home.categories_list')
@if(Session('success'))
× @lang('home.success')! {{session('success')}}.
@endif
@csrf
@foreach($categories as $category) @endforeach
# @lang('home.name') @lang('home.parent') @lang('home.icon') @lang('home.edit') @lang('home.delete')
{{ @$category->id }} {{@$category->translations->first()->name}} @if($category->parent_id != NULL) {{@$category->parent->translations->first()->name}} @else @lang('home.non_parent') @endif {{@$category->translations->first()->name}}
  • @include('panel.categories.delete_from_list')
    @stop @section('jsCode') @stop