PHP code example of filefabrik / bootraiser
1. Go to this page and download the library: Download filefabrik/bootraiser library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
filefabrik / bootraiser example snippets
namespace YourCompanyVendor\YourPackage\Providers;
use Illuminate\Support\ServiceProvider;
class YourPackageServiceProvider extends ServiceProvider
{
public function register(): void
{
parent::register();
Raiser::forProvider($this)
->loadConfigs()
;
}
public function boot(): void
{
Raiser::forProvider($this)
->publishConfigs()
->migrations()
->routes()
->translations()
->views()
->components()
->commands()
->livewire()
;
}
}