“Qu'est-ce que PHP Artisan” Réponses codées

Qu'est-ce que PHP Artisan

PHP artisan is the command line interface/tool
included with Laravel. It provides a number of
commands that can help you while you build your 
application easily. Some of the commands include 
tinker , migrate , config:cache , cache:clear , etc.
Isaac

tutoriel Laravel Create Command

Artisan::command('build {project}', function ($project) {
    $this->info("Building {$project}!");
})->describe('Build the project');
Hungry Hare

tutoriel Laravel Create Command

use App\Models\User;
use App\Support\DripEmailer;

Artisan::command('email:send {user}', function (DripEmailer $drip, $user) {
    $drip->send(User::find($user));
});
Hungry Hare

Réponses similaires à “Qu'est-ce que PHP Artisan”

Questions similaires à “Qu'est-ce que PHP Artisan”

Plus de réponses similaires à “Qu'est-ce que PHP Artisan” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code