for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Backpack\CRUD\app\Console\Commands\Themes;
use Illuminate\Console\Command;
class RequireThemeCoreuiv4 extends Command
{
use InstallsTheme;
Backpack\CRUD\app\Consol...ds\Themes\InstallsTheme
Backpack\CRUD\app\Consol...es\RequireThemeCoreuiv4
$progressBar
$statusColor
$status
$repositories
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'backpack:require:theme-coreuiv4
{--debug} : Show process output or not. Useful for debugging.';
* The console command description.
protected $description = 'Install the CoreUIv4 theme';
* Backpack addons install attribute.
* @var array
public static $addon = [
'name' => 'CoreUIv4',
'description' => [
'UI provided by CoreUIv4, a Boostrap 5 template.',
'<fg=blue>https://github.com/laravel-backpack/theme-coreuiv4/</>',
],
'repo' => 'backpack/theme-coreuiv4',
'path' => 'vendor/backpack/theme-coreuiv4',
'command' => 'backpack:require:theme-coreuiv4',
'view_namespace' => 'backpack.theme-coreuiv4::',
'publish_tag' => 'theme-coreuiv4-config',
'provider' => '\Backpack\ThemeCoreuiv4\AddonServiceProvider',
];
* Execute the console command.
* @return mixed Command-line output
public function handle()
$this->installTheme();
}