Skip to content

Commit ce38c04

Browse files
authored
Merge pull request #12 from laravel/cleanup_install_comamnd
Cleanup Install Command 1
2 parents dfde15c + 91599ac commit ce38c04

28 files changed

+1842
-699
lines changed

.ai/laravel/core.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Do Things the Laravel Way
2-
- Use `./artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.).
2+
- Use `php artisan make:` commands to create new files (i.e. migrations, controllers, models, etc.).
33
- If you're creating a generic PHP class, use `artisan make:class`.
44

55
## Database
@@ -11,7 +11,7 @@
1111
- Use Laravel's query builder for very complex database operations.
1212

1313
## Model Creation
14-
- When creating new models, create factories and seeders for them too. Ask the user if they need any other things, use `list-artisan-commands` to check the available options to `./artisan make:model`
14+
- When creating new models, create factories and seeders for them too. Ask the user if they need any other things, use `list-artisan-commands` to check the available options to `php artisan make:model`
1515

1616
## APIs and Eloquent Resources
1717
- For APIs, use Eloquent API Resources and API versioning

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ composer require laravel/boost --dev
3434

3535
Install the MCP server & guidelines
3636
```bash
37-
./artisan boost:install
37+
php artisan boost:install
3838
```
3939

4040
You're ready to go!

0 commit comments

Comments
 (0)