@extends('layouts.app') @section('content')

Transaction Locking

Prevent backdated changes to your financial records.

@if(session('success'))
{{ session('success') }}
@endif

{{ $currentLock ? 'System Locked' : 'System Unlocked' }}

@if($currentLock)

Records on or before {{ date('M d, Y', strtotime($currentLock->lock_date)) }} are read-only.

@else

No transactions are currently frozen. You can edit any past record.

@endif
What does this do?
  • Prevents creation of transactions before the lock date.
  • Blocks editing of historical Journals, Invoices, and Bills.
  • Disables deletion of records in the locked period.
  • Ensures finalized periods remain tamper-proof.
Set Lock Date
@csrf
Use this after closing your monthly or yearly books.
@if($currentLock) @csrf @method('DELETE') @endif
@endsection