@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("details")}}

{{__("Group-details")}}

@endsection @section("content")
@csrf

@error("number")
{{$message}}
@enderror
@error("name")
{{$message}}
@enderror

@foreach($contents["item"] as $item) @if($item != null) @endif @endforeach @foreach($contents["group"] as $group) @if($group != null) @endif @endforeach
# {{__('type')}} {{__('number')}} {{__('name')}}
{{$count}} {{"Item"}} {{$item->classification->code.$item->item_code}} {{$item->name}}
{{$count}} {{"Group"}} {{$group->number}} {{$group->name}}
{{$contents["item"]->links("pagination::bootstrap-4")}}


@endsection @section("scripts") @endsection