@extends('layouts.app') @section('title', 'Banks') @section('content')
@if ($message = Session::get('success'))

{{ $message }}

@endif

Mass Upload

Download a sample csv, fill in the details of the member savings then upload.

Please Note:

The file name should include the date uploaded e.g. (savings_31_02_2000)

For backdated records, toggle on the button below

Download CSV
@csrf
@error('csv_file') {{ $message }} @enderror


@foreach($savings as $saving) @endforeach
Member Number Member Name Account Type Account Balance Action
{{ $saving->account->user->member_number }} {{ $saving->account->user->fname }} {{ $saving->account->user->lname }} {{ $saving->account->accountType->name }} {{ $saving->account_balance }}
@endsection @pushOnce('scripts') @endpushOnce