DEV Community

Cover image for Top 11 Features Of Laravel 8 That You Must Know
Solace Infotech Pvt. Ltd.
Solace Infotech Pvt. Ltd.

Posted on

Top 11 Features Of Laravel 8 That You Must Know

Laravel is the most popular framework for development with a huge community support. After the release of laravel 8, this PHP framework will continue to bring new and improved features with every version. If you are thinking of using laravel for your next project, then you must know the improved features of laravel 8. So, here we’ll see the new features of laravel 8. But before getting into the details, let us discuss why you should choose Laravel over other frameworks.

Reasons To Choose Laravel For Development Over Other Frameworks-

1. Security-
Security is a critical factor which needs more attention than other aspects of web apps. Around there, a Laravel development agency uses Laravel and delivers a seamless and impenetrable level of security.

You can know the reasons of – why enterprises should opt for laravel development services

2. Environment-
Laravel provides an interactive environment for project development. Hence programmers can easily handle their tasks. Also it streamlines the complex and longer tasks, and simplifies them reasonably.

3. Tools Of Learning-
Laravel is best suited framework for web projects because it can offer advanced learning sources, practice sessions and Laracasts. This framework provides tutorials and free tutorials through which developers can solve most challenging problems through coding.

Features Of Laravel 8-

1. New Landing Page-
Laravel 8 brings with it a new landing for new installation. Laravel creators redesigned and built it from scratch using TailwindCSS. Accordingly, designers can choose between light and dark modes. Also, by default, it can extend links to community sites and SaaS products.

2. Laravel Jetstream-
A new Laravel application scaffolding, Laravel Jetstream, was released with Laravel 8. Jetstream provides a great starting point for laravel app with built-in options as follows-

Two-factor authentication (2FA)

  • Email verification
  • Laravel Sanctum API support
  • Designed with Tailwind CSS
  • Session management
  • Login and registration
  • Choice of two frontend stacks: Livewire + Blade or Inertia.js + Vue.js

How to use Laravel Jetstream?
One can create a new app with Jetstream by using Laravel installer. Just insure that the Laravel installer is updated to v4.0, and then run following-
laravel new your-project --jet
You can choose Inertia or Livewire. Next, run your database migrations with:

php artisan migrate
You can see your application at http://localhost:8000 by running

php artisan serve
If you’d prefer to use Composer, you can get the Composer installation instructions in the Laravel Jetstream documentation.

3. Models Directory (Default app/models directory)-
Laravel 8 provides a default app/models directory instead of leaving the model class in the root app directory as in the previous laravel versions.

You can create model using artisan command-

php artisan make:model modelName
When you want to keep your models in your app directory, delete the models directory, generator commands will respect that and create the model classes in app directory.

Know more at- [https://solaceinfotech.com/blog/top-11-features-of-laravel-8-that-you-must-know/]

Top comments (0)