Skip to content

Latest commit

 

History

History
149 lines (90 loc) · 4.03 KB

responses.md

File metadata and controls

149 lines (90 loc) · 4.03 KB

Views & Responses

Basic Responses

Returning Strings From Routes

Route::get('/', function()
{
	return 'Hello World';
});

Creating Custom Responses

A Response instance inherits from the Symfony\Component\HttpFoundation\Response class, providing a variety of methods for building HTTP responses.

$response = Response::make($contents, $statusCode);

$response->headers->set('Content-Type', $value);

return $response;

Attaching Cookies To Responses

$cookie = Cookie::make('name', 'value');

return Response::make($content)->withCookie($cookie);

Redirects

Returning A Redirect

return Redirect::to('user/login');

Returning A Redirect To A Named Route

return Redirect::route('login');

Returning A Redirect To A Named Route With Parameters

return Redirect::route('profile', ['user' => 1]);

Returning A Redirect To A Controller Action

return Redirect::action('HomeController@index');

Returning A Redirect To A Controller Action With Parameters

return Redirect::action('UserController@profile', ['user' => 1]);

Views

Views typically contain the HTML of your application and provide a convenient way of separating your controller and domain logic from your presentation logic. Views are stored in the app/views directory.

A simple view could look something like this:

// View stored in app/views/greeting.php

<html>
	<body>
		<h1>Hello, <?php echo $name; ?></h1>
	</body>
</html>

This view may be returned to the browser like so:

Route::get('/', function()
{
	return View::make('greeting', ['name' => 'Taylor']);
});

The second argument passed to View::make is an array of data that should be made available to the view.

Passing Data To Views

$view = View::make('greeting', $data);

$view = View::make('greeting')->with('name', 'Steve');

In the example above the variable $name would be accessible from the view, and would contain Steve.

Passing A Sub-View To A View

Sometimes you may wish to pass a view into another view. For example, given a sub-view stored at app/views/child/view.php, we could pass it to another view like so:

$view = View::make('greeting')->nest('child', 'child.view');

$view = View::make('greeting')->nest('child', 'child.view', $data);

The sub-view can then be rendered from the parent view:

<html>
	<body>
		<h1>Hello!</h1>
		<?php echo $child; ?>
	</body>
</html>

View Composers

View composers are callbacks or class methods that are called when a view is created. If you have data that you want bound to a given view each time that view is created throughout your application, a view composer can organize that code into a single location. Therefore, view composers may function like "view models" or "presenters".

Defining A View Composer

View::composer('profile', function($event)
{
	$event->view->with('count', User::count());
});

Now each time the profile view is created, the count data will be bound to the view.

If you would rather use a class based composer, which will provide the benefits of being resolved through the application IoC container, you may do so:

View::composer('profile', 'ProfileComposer');

A view composer class should be defined like so:

class ProfileComposer {

	public function compose($event)
	{
		$event->view->with('count', User::count());
	}

}

Note that there is no convention on where composer classes may be stored. You are free to store them anywhere as long as they can be autoloaded using the directives in your composer.json file.

Special Responses

Creating A JSON Response

return Response::json(['name' => 'Steve', 'state' => 'CA']);

Creating a File Download Response

return Response::download($pathToFile);

return Response::download($pathToFile, $status, $headers);