Команда консоли Laravel не работает

пытаясь настроить пример консольной команды на laravel 5.2, но она не работает

Я запустил php artisan make:console CoolCommand

Вот мой файл

 <?php namespace App\Console\Commands; use Illuminate\Console\Command; class CoolCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'be:cool'; /** * The console command description. * * @var string */ protected $description = 'Allows you to be cool'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { echo "Yes you are very cool!"; } } 

Когда я нахожусь в php artisan, команда не указана под данной подписью

Что мне не хватает? благодаря