Posts

while run cron with lumen : There are no commands defined in the “insert” namespace.

Image
up vote 0 down vote favorite I have written code for cron command as below in lumen (micro framwork of laravel) <?php namespace AppConsoleCommands; use IlluminateConsoleCommand; use AppModelsEmailDump; use DB; /** * dumpEmails Class * * This cron is to dump emails with cron use * * @author Hetal Gohel <hetal.gohel@brainvire.com> * */ class dumpEmails extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'insert:emails'; /** * The console command description. * * @var string */ protected $description = 'This cron is to dump emails with cron use'; /** * Create a new command instance. * * @return void */ public function __c...