This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c96df8c
commit a3a56d5
Showing
3 changed files
with
19,797 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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 | ||
|
@@ -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. | ||
|
@@ -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 | ||
``` | ||
|
||
|
Oops, something went wrong.