@extends('layouts.admin', ['title' => 'کدینگ انبار - دستهبندی کالاها'])
@section('content')
کدینگ انبار - دستهبندی کالاها {{ isset($subTitle) ? $subTitle : '' }}
بازگشت
@if(!isset($currentItem))
@if(count($data)==0)
اطلاعاتی برای نمایش دادن وجود ندارد.
@else
| کد |
والد |
عنوان |
|
@foreach($data as $item)
| {{ $item->coding }} |
{{ $item->parent_id != null ? $item->Parent->title : 'ندارد' }} |
{{ $item->title }} |
حذف
ویرایش
@if($level_count < 4)
زیردسته
@endif
محصولات
|
@endforeach
@endif
@endif
@stop