Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Route::get('/', function()
  2. {
  3. $contents = "Hello";
  4. $response = Response::make($contents, 200);
  5. return $response;
  6. });
  7.  
  8. use IlluminateSupportFacadesResponse;
  9.  
  10. use IlluminateSupportFacadesResponse as FacadeResponse;
  11.  
  12. return Response::stream($callback, 200, $headers);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement