samedi 24 décembre 2016

Laravel :: The requested resource /hello was not found on this server

I got error when I change .php file to .blade.php. Before I changed it got this error.

Route::get('hello','HelloController@index');

HelloController

public function index()
    {
      $data = array(
    'name'  => 'Rakesh',
    'email' => 'sharmarakesh395@gmail.com');
      return View::make('hello.index')->with('data', $data);
    }

/public/hello/index.blade.php

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Laravel 5.3 - Home page</title>
  </head>
  <body>
      <h1>Welcome Hello index </h1>
      <h1>{!!$data!!}</h1>
      <h1>{!!$data['email']!!}</h1>
  </body>
</html>

Error

The requested resource /hello was not found on this server.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire