@extends('layouts.master') @section('page_title', 'Accounting Configuration Details') @section('content')

Configuration Details

Edit Configuration Back to Configurations
{{ $accountingConfig->getConfigDescription() }}
@if($accountingConfig->is_active) Active @else Inactive @endif
Configuration Type:
{{ $accountingConfig->config_type }}
Revenue Account:
{{ $accountingConfig->revenueAccount->name }}
Code: {{ $accountingConfig->revenueAccount->code ?? $accountingConfig->revenueAccount->account_code }} @if($accountingConfig->revenueAccount->description) | {{ $accountingConfig->revenueAccount->description }} @endif
Receivable Account:
{{ $accountingConfig->receivableAccount->name }}
Code: {{ $accountingConfig->receivableAccount->code ?? $accountingConfig->receivableAccount->account_code }} @if($accountingConfig->receivableAccount->description) | {{ $accountingConfig->receivableAccount->description }} @endif
Cash Account:
{{ $accountingConfig->cashAccount->name }}
Code: {{ $accountingConfig->cashAccount->code ?? $accountingConfig->cashAccount->account_code }} @if($accountingConfig->cashAccount->description) | {{ $accountingConfig->cashAccount->description }} @endif
@if($accountingConfig->description)
Description:
{{ $accountingConfig->description }}
@endif
Created:
{{ $accountingConfig->created_at->format('M d, Y g:i A') }}
Last Updated:
{{ $accountingConfig->updated_at->format('M d, Y g:i A') }}
Transaction Flow
When a student payment is received:
DR
{{ $accountingConfig->cashAccount->name }}
Cash increases (Asset)
CR
{{ $accountingConfig->receivableAccount->name }}
Receivables decrease (Asset)
If no outstanding balance exists, the credit will go to the revenue account instead.
Quick Actions
Edit Configuration
@csrf @method('PATCH')
View Revenue Account View Receivable Account View Cash Account
@endsection