Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
If we only want to update a few packages and not all
composer update vendor/package vendor/package2
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
0
Searches packages in packagist repositories
composer search keyword
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
0
We can also search for more than one term by passing multiple arguments
composer search keyword1 keyword2
by Valeri Tandilashvili
4 years ago
0
Composer
Composer official doc
0
Installs
vendor/package
with development mode
composer require --dev illuminate/container
The package will be listed in require-dev inside
composer.json
"require-dev": {
        "illuminate/container": "^7.25"
}
by Valeri Tandilashvili
4 years ago
0
Composer
Php Composer Tutorial
0
Recreates autoload files inside
/vendor/composer/
directory
composer dumpautoload  /  composer dump-autoload
by Valeri Tandilashvili
4 years ago
0
Composer
Php Composer Tutorial
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
4 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
4 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
4 years ago
0
Laravel
Laravel From Scratch
0
Routes are located in
routes/web.php
by Valeri Tandilashvili
4 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
4 years ago
0
Laravel
routes
Laravel From Scratch
0
Results: 1580