Home / Laravel / Page 4

Laravel

Laravel Notification – Customize markdown email header and footer

Laravel is one of the most popular PHP Framework. Today we are going to talk about its built in Email Notification functionality. We are using make:notification artisan command to create notification. The Notification only available on Laravel 5.3.x and above. I am using Laravel 5.7.x and hope this will works with the supported versions too.

Laravel Customize Default Authentication

Laravel provides built-in authentication by default that includes many security features. But its built-in Authentication only works with email and password fields. If we have any status field or if we want to store logs of logged in users then we don’t have other option then building own customized authentication. In this post, we are doing login with email, password and one more extra field of status/role. I am using status field and it depends on you which field you are using on your custom authentication. 

Laravel 5.5 Pagination for Bootstrap 4

There are multiple ways to replace Laravel’s default pagination with Bootstrap 4 Pagination. To get the laravel default pagination template you have to run the php artisan vendor:publish command in your terminal and this command will auto generates all the pagination templates including bootstrap 4 pagination template. If you check the resources/views then you find there is a folder with name vendor that holds another pagination directory with 4 files:

  • bootstrap-4.blade.php
  • default.blade.php
  • simple-bootstrap-4.blade.php
  • simple-default.blade.php