you are reading the documentation for version
v2
our latest version is
v3
make sure to select the correct version.
to check your version use:
to check your version use:
composer show lara-zeus/wind
On this page
Composer
You can install the package via composer:
1composer require lara-zeus/wind
publish
for your convenient, we create a one command to publish them all:
1php artisan wind:publish
you can pass --force
option to force publishing all the files, helps if you're updating the package
Migrations
to just publish the migrations files
1php artisan vendor:publish --tag=zeus-wind-migrations
Seeder and Factories
optionally, if you want to seed the database, publish the seeder and factories with:
1php artisan vendor:publish --tag=zeus-wind-seeder2php artisan vendor:publish --tag=zeus-wind-factories
Assets
to publish the assets files for the frontend:
1php artisan vendor:publish --tag=zeus-assets
Run Migration
finally, run the migration:
1php artisan migrate