@extends('client.layout') @section('title') {{ translate('my application') }} @endsection @section('content')
{{ translate('my application') }}
@foreach($data as $key) @endforeach
# {{translate('branch')}} {{translate('product')}} {{translate('amount')}} {{translate('status')}} {{translate('date')}}
{{$key->id}} @if(!empty($key->branch)) {{$key->branch->name}} @endif @if(!empty($key->loan_product)) {{$key->loan_product->name}} @else {{translate('broken')}} @endif {{round($key->amount)}} @if($key->status=='declined') {{translate('declined')}} @endif @if($key->status=='approved') {{translate('approved')}} @endif @if($key->status=='pending') {{translate('pending')}} @endif {!! $key->created_at !!}
@endsection