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

Repayment Loans

@foreach($repayments as $repayment) {{csrf_field()}} {{method_field('DELETE')}} {{ csrf_field() }} @endforeach
Borrower Amount Method Collected date Collector Description Status Action
{{$repayment->user->name}} {{$repayment->amount}} {{$repayment->payment_method}} {{$repayment->collection_date}} {{$repayment->collector}} {{$repayment->description}} {{$repayment->is_verified == 1 ? 'confirmed' : 'unconfirmed'}}
@endsection @section('page-js') @endsection