Hi.
I'm trying to make it work with my Laravel 8 installation but it seems this package is outdated with new Laravel version.
I'm having problems with runCommand method from all of your commands.
// This is the expected method interface
protected function runCommand($command, $path, OutputInterface $output)
// this is the current interface
protected function runCommand($command, $path)
// These are the errors that i get from:
ErrorException
Declaration of devmtm\NovaCustomViews\ViewsCommand::runCommand($command, $path) should be compatible with Illuminate\Console\Command::runCommand($command, array $arguments, Symfony\Component\Console\Output\OutputInterface $output)
at vendor/digitalcloud/nova-custom-views/src/commands/ViewsCommand.php:212
ErrorException
Declaration of devmtm\NovaCustomViews\DashboardViewCommand::runCommand($command, $path) should be compatible with Illuminate\Console\Command::runCommand($command, array $arguments, Symfony\Component\Console\Output\OutputInterface $output)
at vendor/digitalcloud/nova-custom-views/src/commands/DashboardViewCommand.php:163
Etc...
Edit
BTW: Process class interface should be updated.
Its constructor expects an array and now a string is given
Argument 1 passed to Symfony\Component\Process\Process::__construct() must be of the type array, string given,
End edit
Could you make it compatible with Laravel 8?
Thank you so much
Hi.
I'm trying to make it work with my Laravel 8 installation but it seems this package is outdated with new Laravel version.
I'm having problems with runCommand method from all of your commands.
// This is the expected method interface
// this is the current interface
// These are the errors that i get from:
Etc...
Edit
BTW: Process class interface should be updated.
Its constructor expects an array and now a string is given
End edit
Could you make it compatible with Laravel 8?
Thank you so much