@extends('pdf') @section('content-area')

@lang('All product sub categories list')

@foreach ($productsubCategories as $key => $subCategory) @endforeach
@lang('#') @lang('Category') @lang('Code') @lang('Name') @lang('Note') @lang('Status')
{{ ++$key }} {{ $subCategory['category']['name'] }}
[{{ config('config.proCatPrefix') . '-' . $subCategory['category']['code'] }}]
{{ config('config.proSubCatPrefix') . '-' . $subCategory['code'] }} {{ $subCategory['name'] }} {{ $subCategory['note'] }} @if ($subCategory['status']) @lang('Active') @else @lang('Inactive') @endif
@endsection