Query::where laravel tricks advanced code example
Example 1: laravel tricks and tips
Route::get('logout', function()
{
Auth::logout();
return Redirect::home();
});
//@sujay
Example 2: laravel tricks and tips
Route::get('orders', function()
{
return View::make('orders.index')
->with('orders', Order::all());
});
//@sujay