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

@lang('All product categories list')

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