skip to Main Content

error when i run php artisan migrate command on line 51 – Phpmyadmin

When I run the php artisan migrate command in terminal I'm left with this. ParseError syntax error, unexpected ')' at C:laragonwwwtestnum2vendorlaravelframeworksrcIlluminateBusBusServiceProvider.php:51 47▕ return new DatabaseBatchRepository( 48▕ $app->make(BatchFactory::class), 49▕ $app->make('db')->connection(config('queue.batching.database')), 50▕ config('queue.batching.table', 'job_batches'), ➜ 51▕ ); 52▕ }); 53▕ } 54▕…

VIEW QUESTION

Setting up a Laravel cron job in cPanel

I have the following function: protected function schedule(Schedule $schedule) { $schedule->command('email:users')->everyMinute(); } when I run the command artisan schedule:run it sends an email but when I add the following command to the cpanel as a cron job it doesn't send…

VIEW QUESTION

Laravel migration cancelled – Plesk

when I trying to migrate something I get this error: ************************************** * Application In Production! * ************************************** Do you really wish to run this command? Command Cancelled! Im running a centOS 6.5 server without Plesk 12 Is there anyway to…

VIEW QUESTION
Back To Top
Search