split extra screens from dynamic single
linter / quality (push) Failing after 1m3s
tests / ci (8.4) (push) Failing after 1m6s
tests / ci (8.3) (push) Has been cancelled
tests / ci (8.5) (push) Failing after 1m3s

This commit is contained in:
Daan Meijer
2026-06-17 00:27:37 +02:00
parent 8f9c4c9d1f
commit d01091d5a6
6 changed files with 251 additions and 80 deletions
+6 -2
View File
@@ -25,9 +25,13 @@ class LedgerController extends Controller
/**
* Show the form for creating a new resource.
*/
public function create()
public function create(Request $request, Dynamic $dynamic)
{
//
$this->authorize('update', $dynamic);
return Inertia::render('Ledgers/Create', [
'dynamic' => $dynamic,
]);
}
/**