Views

Views contain the HTML served by your application and separate your controller / application logic from your presentation logic. Views are stored in the directory. A simple view might look something like this:

Since this view is stored at resources/views/greeting.blade.php, we may return it using the global view helper like so:

  1. Route::get('/', function () {
  2. return view('greeting', ['name' => 'James']);
  3. });

As you can see, the first argument passed to the view helper corresponds to the name of the view file in the resources/views directory. The second argument is an array of data that should be made available to the view. In this case, we are passing the name variable, which is displayed in the view using .

Views may also be nested within sub-directories of the resources/views directory. "Dot" notation may be used to reference nested views. For example, if your view is stored at resources/views/admin/profile.blade.php, you may reference it like so:

  1. return view('admin.profile', $data);

Determining If A View Exists

If you need to determine if a view exists, you may use the View facade. The exists method will return true if the view exists:

  1. use Illuminate\Support\Facades\View;
  2. if (View::exists('emails.customer')) {
  3. //
  4. }

Creating The First Available View

Using the first method, you may create the first view that exists in a given array of views. This is useful if your application or package allows views to be customized or overwritten:

  1. use Illuminate\Support\Facades\View;
  2. return View::first(['custom.admin', 'admin'], $data);

As you saw in the previous examples, you may pass an array of data to views:

  1. return view('greetings', ['name' => 'Victoria']);

When passing information in this manner, the data should be an array with key / value pairs. Inside your view, you can then access each value using its corresponding key, such as <?php echo $key; ?>. As an alternative to passing a complete array of data to the view helper function, you may use the with method to add individual pieces of data to the view:

  1. return view('greeting')->with('name', 'Victoria');

Sharing Data With All Views

Occasionally, you may need to share a piece of data with all views that are rendered by your application. You may do so using the view facade's share method. Typically, you should place calls to share within a service provider's boot method. You are free to add them to the AppServiceProvider or generate a separate service provider to house them:

View composers are callbacks or class methods that are called when a view is rendered. If you have data that you want to be bound to a view each time that view is rendered, a view composer can help you organize that logic into a single location.

  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\View;
  4. use Illuminate\Support\ServiceProvider;
  5. class ViewServiceProvider extends ServiceProvider
  6. {
  7. * Register any application services.
  8. *
  9. * @return void
  10. */
  11. public function register()
  12. {
  13. //
  14. }
  15. /**
  16. * Bootstrap any application services.
  17. *
  18. * @return void
  19. */
  20. public function boot()
  21. {
  22. // Using class based composers...
  23. View::composer(
  24. 'profile', 'App\Http\View\Composers\ProfileComposer'
  25. );
  26. // Using Closure based composers...
  27. View::composer('dashboard', function ($view) {
  28. //
  29. });
  30. }
  31. }

Now that we have registered the composer, the [email protected] method will be executed each time the profile view is being rendered. So, let's define the composer class:

  1. <?php
  2. namespace App\Http\View\Composers;
  3. use Illuminate\View\View;
  4. use App\Repositories\UserRepository;
  5. class ProfileComposer
  6. /**
  7. * The user repository implementation.
  8. *
  9. * @var UserRepository
  10. */
  11. protected $users;
  12. /**
  13. * Create a new profile composer.
  14. *
  15. * @param UserRepository $users
  16. * @return void
  17. */
  18. public function __construct(UserRepository $users)
  19. {
  20. // Dependencies automatically resolved by service container...
  21. $this->users = $users;
  22. }
  23. /**
  24. * Bind data to the view.
  25. *
  26. * @param View $view
  27. * @return void
  28. */
  29. public function compose(View $view)
  30. {
  31. $view->with('count', $this->users->count());
  32. }
  33. }

Just before the view is rendered, the composer's compose method is called with the Illuminate\View\View instance. You may use the with method to bind data to the view.

Attaching A Composer To Multiple Views

You may attach a view composer to multiple views at once by passing an array of views as the first argument to the composer method:

  1. View::composer(
  2. ['profile', 'dashboard'],
  3. 'App\Http\View\Composers\MyViewComposer'
  4. );

The composer method also accepts the * character as a wildcard, allowing you to attach a composer to all views:

View Creators

View creators are very similar to view composers; however, they are executed immediately after the view is instantiated instead of waiting until the view is about to render. To register a view creator, use the creator method:

  1. View::creator('profile', 'App\Http\View\Creators\ProfileCreator');