What is laravel ?
Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching. Laravel aims to make the development process a pleasing one for the developer without sacrificing application functionality.
Is laravel a programming language?
No, Laravel is a framework, not a language – the language is PHP. If you haven’t learned programming itself (not in a programming language, in English), start with Algorithms and Data Structures to learn programming.
Is laravel frontend or backend?
Is Laravel frontend or backend? The short answer is “backend”. The long one: Laravel is a server-side PHP framework; with it you can build full-stack apps, meaning apps with features typically requiring a backend, such as user accounts, exports, order management, etc.
The Top 10 Advantages Of Using Laravel PHP Framework
- Authentication and Authorization Systems. …
- Integration with Mail Services. …
- Integration with Tools for Making Web Applications Faster. …
- Fixing the Most Common Technical Vulnerabilities. …
- Configuration Error and Exception Handling. …
- Automation of Testing Work.
Server Requirements
you will need to make sure your server meets the following requirements:
- PHP >= 7.2.5
- BCMath PHP Extension
- Ctype PHP Extension
- Fileinfo PHP extension
- JSON PHP Extension
- Mbstring PHP Extension
- OpenSSL PHP Extension
- PDO PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
if php development not installed then download wamp server or download XAMPP to setup php in your windows and linux system.For macOS kindly use MAMP server.
How to install Laravel
Laravel utilizes Composer to manage its dependencies. So, before using Laravel, make sure you have Composer installed on your machine.
composer create-project laravel/laravel yourprojectname
sources : https://laravel.com/docs/7.x#server-requirements
How to run first laravel7 project
If you have PHP installed locally and you would like to use PHP’s built-in development server to serve your application, you may use the serve
Artisan command. This command will start a development server at http://localhost:8000
:
php artisan serve
Watch Laravel7 Video Series
Watch Video Tutorial Zero to Pro in Laravel7 on Youtube
Leave a Reply
You must be logged in to post a comment.