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

@lang('All currencies list')

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