Page tree
Skip to end of metadata
Go to start of metadata

Description


mixed view(string $html_file [, array $parameters])


Returns an parsed version of an HTML file that is loaded from your apps /views folder. Commonly used as a return method in routes.

Parameters


$html_file

HTML file name.

$parameters (optional)

An array of parameters to pass to the template.

Examples


route('/foo', function() {

   // Loads HTML file from your apps /views folder
   return view('index.html', [
      'foo' => 'bar'
   ]);
});

In this example our HTML index.html could look like

<h1>Hello World!</h1>
<p>
   {{ foo }}
</p>

 

 

 

  • No labels