brayniverse / laravel-route-view-helper

Route::view('example'); forget using closures when only returning views.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Route::view('example'); forget using closures when only returning views.

License:MIT License


Languages

Language:PHP 99.3%Language:HTML 0.7%