Skip to content

Commit 738d62d

Browse files
committed
Update for Laravel 9
1 parent a6ca2cd commit 738d62d

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# UIkit starter template for Laravel 8
1+
# UIkit starter template for Laravel 9
22
## Including authentication scaffolding for Laravel Fortify
33

44
![](https://torrix.uk/laravel-uikit.jpg)
55

6-
Out of the box, Laravel 8 ships with a default welcome template built with
6+
Out of the box, Laravel 9 ships with a default welcome template built with
77
[Tailwind CSS](https://tailwindcss.com). On top of the base framework,
88
[Laravel JetStream](https://jetstream.laravel.com/) provides two user
99
interfaces (your choice of Laravel Livewire or InertiaJS) for login and
@@ -52,10 +52,10 @@ on how to deploy the project on a live system.
5252

5353
### Prerequisites
5454

55-
To begin, you'll need a **fresh** install of Laravel 8. **Adding this to an
55+
To begin, you'll need a **fresh** install of Laravel 9. **Adding this to an
5656
existing project is not recommended and may cause issues**. For full
5757
instructions on installing Laravel, refer to the
58-
[Laravel installation docs](https://laravel.com/docs/master/installation), but
58+
[Laravel installation docs](https://laravel.com/docs/9.x/installation), but
5959
something like the following will get you up and running:
6060

6161
```
@@ -87,7 +87,7 @@ configure the file `.env` with the correct credentials for it.
8787
```
8888
composer require laravel/fortify
8989
90-
php artisan vendor:publish --provider="Laravel\\Fortify\\FortifyServiceProvider"
90+
php artisan vendor:publish --provider="Laravel\Fortify\FortifyServiceProvider"
9191
9292
php artisan migrate
9393
```
@@ -155,7 +155,7 @@ that you'll be delighted to build your next Laravel project with!
155155
* [Laravel](https://laravel.com/) - The awesome PHP framework that makes all
156156
of this worthwhile.
157157
* [Laravel Fortify](https://github.com/laravel/fortify) - The backend Laravel
158-
8 uses to power its authentication system.
158+
9 uses to power its authentication system.
159159

160160
## Author
161161

composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
}
1717
],
1818
"require": {
19-
"illuminate/support": "^8.3",
20-
"uikit/uikit": "^v3.5.7"
19+
"php": "^8.0.2",
20+
"illuminate/support": "^9.0",
21+
"uikit/uikit": "^v3.11.1"
2122
},
2223
"extra": {
2324
"laravel": {

resources/views/auth/forgot-password.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<form method="POST" action="{{ route('password.email') }}" class="uk-form-stacked">
88
@csrf
99
@if (session('status'))
10-
<div class="alert alert-success" role="alert">
10+
<div data-uk-alert class="uk-alert uk-alert-success" role="alert">
1111
{{ session('status') }}
1212
</div>
1313
@endif

resources/views/auth/verify-email.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<div class="card-body">
1111
@if (session('resent'))
12-
<div class="alert alert-success" role="alert">
12+
<div data-uk-alert class="uk-alert uk-alert-success" role="alert">
1313
{{ __('A fresh verification link has been sent to your email address.') }}
1414
</div>
1515
@endif

0 commit comments

Comments
 (0)