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

@lang('All loan authorities')

@foreach ($loanAuthorities as $key => $authority) @endforeach
@lang('#') @lang('Name') @lang('Email') @lang('Contact Number') @lang('CC Limit') @lang('Status')
{{ ++$key }} {{ $authority['name'] }} {{ $authority['email'] }} {{ $authority['contact_number'] }} @currency($authority['cc_limit']) @if ($authority['status']) @lang('Active') @else @lang('Inactive') @endif
@endsection