Looking to hire Laravel developers? Try LaraJobs

laravel-route-view-helper maintained by brayniverse

Description
Syntactic sugar for those occasions when you only want to display a basic view.
Last update
2017/02/28 16:40 (dev-master)
License
Downloads
43
Tags

Comments
comments powered by Disqus

Laravel route view helper

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

Syntactic sugar for those occasions when you only want to display a basic view.

This package adds a Route::view() helper method so you don't have to create a closure when all you are returning is a view.

Installation

Begin by installing the package through Composer.

$ composer require brayniverse/laravel-route-view-helper

Then add the following to your providers array in config/app.php.

Brayniverse\LaravelRouteViewHelper\ServiceProvider::class

Usage

Normally you'd have to return a view in either a controller method or callback like the following:

public function contact()
{
  return view('contact');
}

// or

Route::get('/contact', function () {
  return view('contact');
});

Now you can do the same in one line.

Route::view('/contact', 'contact');

Credits