@extends('layouts.admin') @section('content')

Borrowing List

Start Date
End Date
@foreach ($loans as $index=>$loan) @endforeach
No. Order Number Name Username Loan Amount Loan Term Creation Date Status Operation
#{{$index+1 }} {{$loan->loan_id }} {{$loan->member->actual_name??'' }} {{$loan->member->user->phone??'' }} {{ number_format($loan->amount??0) }} {{$settings_->where('key','currency')->first()->value??''}} {{$loan->loan_period }}months {{$loan->created_at->format('d/m/Y h:i') }} {{$loan->status }} Modify Loan {{-- @if($loan->status!='approve') Approve @endif @if($loan->status!='reject') Reject @endif --}} Checking Data View Contract
{{ csrf_field() }}
{{-- @if($loan->member->user->is_active) Disable @else Enable @endif --}}
{{ $loans->links() }}
{{-- Start Review status modal --}}
@endsection @section('meta') Borrowing List List- {{ config('app.name', 'Dashboard') }} @endsection @section("scripts") @endsection