https://github.com/punitkatiyar/laravel-master-guide
Laravel PHP Framework step by step development master guide
https://github.com/punitkatiyar/laravel-master-guide
composer laravel laravel-framework mvc-framework php php8
Last synced: about 1 year ago
JSON representation
Laravel PHP Framework step by step development master guide
- Host: GitHub
- URL: https://github.com/punitkatiyar/laravel-master-guide
- Owner: punitkatiyar
- License: mit
- Created: 2021-12-27T16:01:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-18T10:54:53.000Z (about 2 years ago)
- Last Synced: 2024-05-19T10:20:40.691Z (about 2 years ago)
- Topics: composer, laravel, laravel-framework, mvc-framework, php, php8
- Language: PHP
- Homepage: https://punitkatiyar.github.io/laravel-master-guide/
- Size: 132 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Laravel
Laravel PHP Framework
## Install Laravel using Composer
> ### get composer
> composer create-project laravel/laravel example-app
> cd example-app
> php artisan serve
## The Laravel Installer
> composer global require laravel/installer
> laravel new example-app
> cd example-app
> php artisan serve
## Create Controler
> php artisan:controler UserControler
>
## cheack PHP Version
```
{{ PHP_VERSION }}
```