Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
up composer lock
Browse files Browse the repository at this point in the history
  • Loading branch information
adr1enbe4udou1n committed Sep 9, 2020
1 parent c96df8c commit a3a56d5
Show file tree
Hide file tree
Showing 3 changed files with 19,797 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/guide/laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Simply init your project by this simple steps :
```bash
laravel new my-brand-new-project && cd my-brand-new-project
composer require okami101/laravel-vuetify-admin
php artisan crud:install
php artisan admin:install
```

Then follow wizard.
Expand Down Expand Up @@ -107,7 +107,7 @@ Note as `Impersonate` must be placed just right **AFTER** the `EnsureFrontendReq
**At the end of installation, a full ready Vue CLI Admin project will be installed inside `admin` sub folder (default) with all required dependencies by using [this preset](https://github.com/okami101/laravel-vuetify-admin/blob/master/preset.json).**

::: tip UI ADMIN GENERATE COMMAND
You can still regenerate new admin UI without reuse full installer by using `php artisan crud:ui`.
You can still regenerate new admin UI without reuse full installer by using `php artisan admin:ui`.
:::

::: tip DIRECTORY STRUCTURE
Expand Down Expand Up @@ -163,7 +163,7 @@ docker-compose exec laravel php artisan storage:link
docker-compose exec laravel php artisan migrate:fresh --seed
```

If not included on your dummy data, you may need to create your first user by `docker-compose exec laravel php artisan crud:user [email protected]`. You will be prompted for the user name and password.
If not included on your dummy data, you may need to create your first user by `docker-compose exec laravel php artisan admin:user [email protected]`. You will be prompted for the user name and password.

::: tip ADMIN URL
By default admin URL is configured at [http://localhost:8080](http://localhost:8080) which is default Vue CLI dev serve URL.
Expand All @@ -179,7 +179,7 @@ Then you have to prepare laravel installation as usual with all migrations and s
```bash
php artisan storage:link
php artisan migrate:fresh --seed
php artisan crud:user [email protected] # only if no already dummy users from your seeders
php artisan admin:user [email protected] # only if no already dummy users from your seeders
php artisan serve
```

Expand Down
Loading

0 comments on commit a3a56d5

Please sign in to comment.