@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Parcel category') @section('vendor-style') @endsection @section('content') @include('admin.includes.show-msg')
Image

Add parcel category, if it does not exist

@forelse ($parcel_categorys as $item) @empty @endforelse
# Category name Length * Height * Width Weight (min-max) Actions
@include('admin.includes._iteration', ['data' => $parcel_categorys]) {{ Str::ucfirst($item->name) }} Min: {{ $item->length_min . ' x ' . $item->height_min . ' x ' . $item->width_min }} cm
Max: {{ $item->length_max . ' x ' . $item->height_max . ' x ' . $item->width_max }} cm
{{ $item->weight_min }}kg to {{ $item->weight_max }}kg @include('admin.parcel_category.edit', ['parcel_category' => $item])
No record found.
@include('admin.parcel_category.create') @endsection @section('page-script') @if (count($errors) > 0) @dump($errors) @endif @if (session()->has('err')) @endif @endsection @section('vendor-script') @endsection