“Kontroler uruchomienia Laravel z wiersza poleceń” Kod odpowiedzi

Uruchom polecenie rzemieślnicze od kontrolera

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

Kontroler uruchomienia Laravel z wiersza poleceń

 <?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

Odpowiedzi podobne do “Kontroler uruchomienia Laravel z wiersza poleceń”

Pytania podobne do “Kontroler uruchomienia Laravel z wiersza poleceń”

Więcej pokrewnych odpowiedzi na “Kontroler uruchomienia Laravel z wiersza poleceń” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu