Laravel Internal Structure

 

Add views

template uses an extension '.blade.php'

Goto

1) routes -> web.php

2) resources -> views -> welcom.blade.php








Routing

Route::get('/', function () {
    return view('welcome');
});


Comments

Popular Posts