“Ejecutar el comando artesanal desde el controlador” Código de respuesta

Ejecutar el comando artesanal desde el controlador

If you have simple job to do you can do it from route file. 
For example you want to clear cache. In terminal it would be php artisan 
cache:clear In route file that would be:

\Artisan::call('cache:clear');
Lokesh003

Use el comando artesanal PHP a través del controlador

<?php
Route::get('/foo', function () {
    Artisan::queue('email:send', [
        'user' => 1, '--queue' => 'default'
    ]);
    //
});
Curious Capuchin

Controlador de ejecución de Laravel desde la línea de comandos

 <?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\Http\Controllers\HelloWorldController;

class MakeImportsCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'helloworld';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Say Hello World Controller';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        return $this -> helloWorld();

    }
}
Real Raven

Respuestas similares a “Ejecutar el comando artesanal desde el controlador”

Preguntas similares a “Ejecutar el comando artesanal desde el controlador”

Más respuestas relacionadas con “Ejecutar el comando artesanal desde el controlador” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código