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

@lang('All expense sub categories')

@foreach ($categories as $key => $category) @endforeach
@lang('#') @lang('Category') @lang('Code') @lang('Name') @lang('Status') @lang('Created Date')
{{ ++$key }} {{ $category['exp_category']['name'] }}
[{{ config('config.expCatPrefix') . '-' . $category['exp_category']['code'] }}]
{{ config('config.expSubCatPrefix') . '-' . $category['code'] }} {{ $category['name'] }} @if ($category['status']) @lang('Active') @else @lang('Inactive') @endif {{ \Carbon\Carbon::parse($category['created_at'])->format('d-M-Y') }}
@endsection