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

@lang('All units list')

@foreach ($units as $key => $unit) @endforeach
@lang('#') @lang('Name') @lang('Code') @lang('Status') @lang('Created At')
{{ ++$key }} {{ $unit['name'] }} {{ $unit['code'] }} @if ($unit['status']) @lang('Active') @else @lang('Inactive') @endif {{ \Carbon\Carbon::parse($unit['created_at'])->format('d-M-Y') }}
@endsection