share data with view in laravel code example

Example 1: laravel load view in variable

$html = view('users.edit', compact('user'))->render();

Example 2: laravel data share all views

<?php

namespace App\Providers;

use Illuminate\Support\Facades\View;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        View::share('key', 'value');
    }
}

Tags:

Php Example