You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ For PHP auto-formatting on save, you can use the [phpcsfixer](https://marketplac
55
55
},
56
56
```
57
57
58
-
For PHP contextual linting, you can use the [phpcs](https://marketplace.visualstudio.com/items?itemName=ikappas.phpcs) extension and then install [PHP_CodeSniffer](https://github.com/squizlabs/PHP_CodeSniffer) globally.
58
+
For PHP contextual linting, you can use the [phpcs](https://marketplace.visualstudio.com/items?itemName=ikappas.phpcs) extension and then install [PHP_CodeSniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) globally.
59
59
60
60
```
61
61
composer global require "squizlabs/php_codesniffer=*"
Copy file name to clipboardExpand all lines: docs/content/2_guides/1_page-builder-with-blade/2_installing-laravel.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ If you have any questions about a step, let us know on our Discord and we will t
9
9
10
10
## Install Laravel
11
11
12
-
For the installation of Laravel, we will use some steps from the [official documentation](https://laravel.com/docs/10.x).
12
+
For the installation of Laravel, we will use some steps from the [official documentation](https://laravel.com/docs/12.x).
13
13
14
14
The official documentation is a goldmine of knowledge, if you ever have trouble understanding a concept, make sure to
15
15
check it out!
@@ -41,7 +41,11 @@ While you are there, make sure that `APP_URL` matches your local url. For exampl
41
41
42
42
`APP_URL=http://laravel-twill.test`
43
43
44
-
If you do not have MySQL setup, you can use [SQLite](https://laravel.com/docs/10.x#databases-and-migrations) as well.
44
+
If you are using the default `php artisan serve` command, the url will be `http://127.0.0.1:8000`.
45
+
46
+
> If your `APP_URL` is set to `http://localhost`, you might experience issues with image cropping. Changing it to `http://127.0.0.1:8000` (or your local IP) should fix this.
47
+
48
+
If you do not have MySQL setup, you can use [SQLite](https://laravel.com/docs/12.x/installation#databases-and-migrations) as well.
45
49
46
50
As mentioned before, the Laravel documentation is far more extensive about the setup procedure, if this guide went too quick, make sure to give those a read.
0 commit comments