1
0
Files
helper_laravel/artisan.md
2026-02-18 09:59:43 +00:00

20 lines
506 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Команды artisan
#### Команда создает ссылку **/resousre**
```bash
php artisan storage:link
```
#### Создать разово Миграцию, Контроллер, Модель
```bash
php artisan make:model UserCode -mcr
```
#### Запустить сиды
```bash
php artisan db:seeder
```
#### Создать Контроллер с методами для стандартных операций
```bash
php artisan make:controller UserController --resource
```