Results: 1578
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Returns view located at
resources/views/pages/about.blade.php
Route::get('/hello', function () {
    return view('pages/about');
});
pages/about
is the same as
pages.about
by Valeri Tandilashvili
5 years ago
0
Laravel
routes
Laravel From Scratch
0
Visiting
/hello
page returns
<h1>
Route::get('/hello', function () {
    return '<h1>Hello World</h1>';
});
by Valeri Tandilashvili
5 years ago
0
Laravel
routes
Laravel From Scratch
0
Visiting
/hello
page returns text
Hello World
Route::get('/hello', function () {
    return 'Hello World';
});
by Valeri Tandilashvili
5 years ago
0
Laravel
routes
Laravel From Scratch
0
Database configuration file is located at
config/database.php
by Valeri Tandilashvili
5 years ago
0
Laravel
Laravel From Scratch
0
Route::get('/', function () {
    return view('welcome');
});
get
- type of HTTP request
/
- stands for the homepage
welcome
- view file located at
resources/views/welcome.blade.php
The route will return
welcome
view file content
by Valeri Tandilashvili
5 years ago
0
Laravel
routes
Laravel From Scratch
0
Routes are located in
routes/web.php
by Valeri Tandilashvili
5 years ago
0
Laravel
Laravel From Scratch
0
All views are located in the
resources/views
folder. All laravel views use
blade
template engine. Views files contain the word in its name like
welcome.blade.php
by Valeri Tandilashvili
5 years ago
0
Laravel
Laravel From Scratch
0
All controllers are located in the
app/Http/Controllers
folder with plural form like
UsersController.php
in Laravel older versions but with singular form like
UserController.php
in new versions of Laravel
by Valeri Tandilashvili
5 years ago
0
Laravel
Laravel From Scratch
0
All models are located in the
app
folder (but
app`/Models
in newer version of Laravel) with singular form like
User.php
by Valeri Tandilashvili
5 years ago
0
Laravel
Laravel From Scratch
0
Creates new project called
projectname
based on
laravel/laravel
package
composer create-project laravel/laravel projectname
by Valeri Tandilashvili
5 years ago
0
Composer
Php Composer Tutorial
1
Results: 1578