We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plz add true false check in config for
because we some time we ahve custome code in loginController and homeController laravel/ui --auth is regenerating the files and removing old code
$this->buildLayout();
protected function buildLayout(): void { if (! (view()->exists($this->layout))) {
$this->info('Creating Layout ...'); $uiPackage = match ($this->options['stack']) { 'tailwind', 'livewire', 'react', 'vue' => 'laravel/breeze', default => 'laravel/ui' }; if (! $this->requireComposerPackages([$uiPackage], true)) { throw new Exception("Unable to install $uiPackage. Please install it manually"); } $uiCommand = match ($this->options['stack']) { 'tailwind' => 'php artisan breeze:install blade', 'livewire' => 'php artisan breeze:install livewire', 'react' => 'php artisan breeze:install react', 'vue' => 'php artisan breeze:install vue', default => 'php artisan ui bootstrap --auth' }; $this->runCommands([$uiCommand]); } }
The text was updated successfully, but these errors were encountered:
or i wanted to be the collaborator in this project if possible
Sorry, something went wrong.
@Haris-Technical-Solutions Yes sure. You can collaborate and I'll review the PR.
thanks, waiting for the changes and invitation to collaboration
No branches or pull requests
plz add true false check in config for
because we some time we ahve custome code in loginController and homeController laravel/ui --auth is regenerating the files and removing old code
$this->buildLayout();
protected function buildLayout(): void
{
if (! (view()->exists($this->layout))) {
The text was updated successfully, but these errors were encountered: