@extends('layouts.admin') @section('title', 'Record Income') @section('page-title', 'Record Income') @section('content')
@csrf

Link this income to a bank account for the transactions report.

@php $defaultCurrency = \App\Models\Currency::getDefaultCode(); $currencies = \App\Models\Currency::where('is_active', true)->orderBy('is_default', 'desc')->orderBy('name')->get(); @endphp
Cancel
@endsection