Adding a new site
Use the Artisan command to scaffold your site.
1php artisan make:site Fictionary
Enable the site
Add the site to "sites" array in config/lego.php
.
Example
1// ...2'sites' => [3 // ...4 App\Sites\Fictionary::id() => App\Sites\Fictionary::class,5],