You are on page 1of 1

<?

php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('\about', function () {
    return view('about');
});

Route::get('/{name}', function ($name) {


Echo $name; 
  return view('welcome',[‘name’=>$name]);
});
Route::view(“about”,’about’);
Route::view(“contact”,’contact’);

about.blade.php

<h1>about<h1>

<a href=”about”>About us</a><br>

contact.blade.php

<h1>contact<h1>

<a href=”contact”>contact</a><br>

Line no.24:{{ $name}}

You might also like