@extends('layouts.master') @section('title') {{ trans_choice('general.pending',1) }} {{ trans_choice('general.approval',1) }} @endsection @section('content')

{{ trans_choice('general.pending',1) }} {{ trans_choice('general.approval',1) }}

@foreach($data as $key) @endforeach
{{ trans_choice('general.account',1) }}# {{ trans_choice('general.branch',1) }} {{ trans_choice('general.client',1) }} {{ trans_choice('general.proposed',1) }} {{ trans_choice('general.amount',1) }} {{ trans_choice('general.created_at',1) }} {{ trans_choice('general.product',1) }} {{ trans_choice('general.action',1) }}
{{ $key->id }} @if(!empty($key->office)) {{$key->office->name}} @endif @if($key->client_type=="client") @if(!empty($key->client)) @if($key->client->client_type=="individual") {{$key->client->first_name}} {{$key->client->middle_name}} {{$key->client->last_name}} @else {{$key->client->full_name}} @endif @endif @endif @if($key->client_type=="group") {{$key->group->name}} @endif {{ number_format($key->principal,$key->decimals) }} {{ $key->created_date }} @if(!empty($key->loan_product)) {{$key->loan_product->name}} @endif
@endsection @section('footer-scripts') @endsection