“Variável global no controlador Laravel” Respostas de código

Laravel use variável global no modelo

SET configuration variables at runtime:
class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        View::share('key', 'value');
        Schema::defaultStringLength(191);
        $company=DB::table('company')->where('id',1)->first();
        config(['yourconfig.company' => $company]);
    }
}

USE:
config('yourconfig.company');
Alemhar

Variável global no controlador Laravel

private $variable;
Fine Flatworm

Como declarar variável global no controlador de Laravel

class TestController extends Controller
{
    private $x;

    public function index()
    {
        $this->x ='22';
    }

    public function send_message()
    {
        echo $this->x;
    }
}
Funky Dev

Respostas semelhantes a “Variável global no controlador Laravel”

Perguntas semelhantes a “Variável global no controlador Laravel”

Mais respostas relacionadas para “Variável global no controlador Laravel” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código