kusikusi/website is a Laravel package for a description for website..
It currently has 0 GitHub stars and 124 downloads on Packagist (latest version v8.0.8).
Install it with composer require kusikusi/website.
Discover more Laravel packages by kusikusi
or browse all Laravel packages to compare alternatives.
Last updated
This is a read-only repository, splitted from the monorepo at github.com/cuatromedios/kusikusi-monorepo
For the Laravel starter kit visit github.com/cuatromedios/kusikusi
This package complements kusikusi/models package, that should be required first.
composer require kusikusi/website:dev-master
php artisan vendor:publish --provider="Kusikusi\WebsiteServiceProvider"
Configuration
php artisan vendor:publish --provider="Kusikusi\WebsiteServiceProvider" --tag="config"
HtmlController
php artisan vendor:publish --provider="Kusikusi\WebsiteServiceProvider" --tag="controller"
php artisan migrate
php artisan db:seed --class=AdminSeeder
php artisan db:seed --class=EmptyWebsiteSeeder
php artisan db:seed --class=BlogSeeder
This Kusikusi Website Package, has a "catch-all" route. As this route may interfere with other application routes, this should not be automatically loaded. So, you will need to:
In your composer.json file, define it as not-discover:
{
"extra": {
"laravel": {
"dont-discover": [
"kusikusi/website"
]
}
}
}
In your application config/app.php configuration file, add the provider at the end of the providers array
[
Kusikusi\WebsiteServiceProvider::class,
];
Run the tests with:
vendor/bin/phpunit
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security-related issues, please email dev@cuatromedios instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.