About php artisan make:console SendEmails Why can't I find it in the list?

PHP中文网
Release: 2023-03-01 20:26:01
Original
1613 people have browsed it

Question:

php artisan make:console SendEmails was created successfully, why can’t it be found in the list? ? ? ?

Solution

Need to register in app/console/kernel.php

protected $commands = [
        \App\Console\Commands\SendEmails::class,
   ];
Copy after login

Related articles:

About laravel’s php artisan command not working?

Laravel Artisan command

About laravel - Error when executing php artisan make:model

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!