Skip to content

Commit

Permalink
Fix loan book search submit error
Browse files Browse the repository at this point in the history
😄
  • Loading branch information
ikhsan3adi committed Jul 8, 2024
1 parent 1537230 commit fd878d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Controllers/Loans/LoansController.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ function ($carry, $item) {
*/
public function new($validation = null, $oldInput = null)
{
if ($this->request->getMethod() !== 'post') {
if ($this->request->getMethod() !== 'POST') {
return redirect()->to('admin/loans/new/members/search');
}

Expand Down

0 comments on commit fd878d9

Please sign in to comment.