Answer : Laravel is an open-source PHP Framework. Which was developed by Taylor Otwell. It is a very popular framework of PHP because of its expressive and elegant syntax. It supports MVC Architecture which is a very popular architecture to build a web application or website quickly in a managed way.
Answer :
Blade is a powerful template Engine of Larvel to write your code in a modern way with elegant syntax. The Blade templating engine provides its own structure such as conditions, loops, and display data. To Create a blade template, you just need to save your file with filename.blade.php in the resources/view directory of laraval.
Example: To Display Data: {{$data->name}}
Example: Loop Value of i:
@for($i=1<10;$i++) {{$i}}
@endfor
Answer :
Laravel's Main Features are the following:
Eloquent ORM.
- Query builder.
- Reverse Routing / Name Routing.
- REsourse Controllers & Resource Routes.
- Migrations.
- Database Seeding.
- Unit Testing.
- Blade template engine.
- Lazy Collection.
- Authentication.
- Artisan