Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit b18a45e

Browse files
committed
Bump Splade version to support Password Confirmation
1 parent 2d1f1fc commit b18a45e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"illuminate/filesystem": "^9.37",
2929
"illuminate/support": "^9.37",
3030
"illuminate/validation": "^9.37",
31-
"protonemedia/laravel-splade": "^1.1"
31+
"protonemedia/laravel-splade": "^1.2.2"
3232
},
3333
"conflict": {
3434
"laravel/framework": "<9.37.0"
@@ -56,4 +56,4 @@
5656
"require-dev": {
5757
"laravel/pint": "^1.1"
5858
}
59-
}
59+
}

src/Console/InstallsSpladeStack.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected function installSpladeStack()
2525
// NPM Packages...
2626
$this->updateNodePackages(function ($packages) {
2727
return [
28-
'@protonemedia/laravel-splade' => '^1.1.0',
28+
'@protonemedia/laravel-splade' => '^1.2.2',
2929
'@tailwindcss/forms' => '^0.5.3',
3030
'@tailwindcss/typography' => '^0.5.2',
3131
'@vitejs/plugin-vue' => '^3.0.0',

stubs/splade/routes/web.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
*/
1616

1717
Route::middleware('splade')->group(function () {
18+
// Registers routes to support password confirmation in Form and Link components...
19+
Route::spladePasswordConfirmation();
20+
1821
// Registers routes to support Table Bulk Actions and Exports...
1922
Route::spladeTable();
2023

0 commit comments

Comments
 (0)