@extends('layouts.master') @section('title', 'Contribution Amount') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')
@yield('title') : {{ $users->user_firstname }} {{ $users->user_lastname }}


@foreach ($contribution_amounts as $index => $amount) @endforeach
No. Member Contribution Rate Status Date Action
{{ $index + 1 }} {{ $amount->contribution_amount_rate ?? '-' }} @if ($amount->contribution_amount_status == 'active') Active @else Expired @endif {{ $amount->contribution_amount_date ?? '-' }} @if (!empty($amount->contribution_amount_file)) @endif
@include('layouts.footer') @endsection