xxxxxxxxxx
# Via Laravel Installer
composer global require laravel/installer
laravel new blog
# Via Composer Create-Project
composer create-project --prefer-dist laravel/laravel blog
xxxxxxxxxx
composer create-project --prefer-dist laravel/laravel appname
cd appname
composer require laravel/sanctum
php artisan vendor:publish --provider="Laravel\Sanctum\SanctumServiceProvider"
composer require laravel/jetstream
php artisan jetstream:install inertia
php artisan migrate
npm install
php artisan vendor:publish --tag=jetstream-views
php artisan serve
npm run hot
xxxxxxxxxx
//There are two ways to install laravel
//1-install laravel with Composer
composer create-project laravel/laravel example-app
// or
//2-install laravel with Laravel Installer
composer global require laravel/installer
laravel new example-app
// go to the project
cd example-app
xxxxxxxxxx
Laravel is a php web application framework with expressive, elegant syntax.
feel free to google search all your curiosity we always here to help you.
xxxxxxxxxx
Laravel is a PHP web application framework with expressive, elegant syntax
xxxxxxxxxx
< == LARAVEL INSTALL == >
composer create-project --prefer-dist laravel/laravel blog
xxxxxxxxxx
Laravel is a free, open-source PHP web framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller architectural pattern