Data Seeding Tips And Tricks

Laravel has this amazing feature of seeding database with test data using seed classes. These classes are stored in database/seeds. Here in this document, we …

Read More

HTTP Client – Laravel 7

Laravel 7 provides an expressive API around Guzzle HTTP Client. It allows us to quickly make outgoing HTTP requests to communicate with other web apps. …

Read More

Setup Daily Emails using Laravel

Most of the company sends mail to notify their users about something or to promote their products. So, one ideal situation could be setting up …

Read More

Useful Laravel Blade Directives

Programmers who are new to web development usually do know how powerful a templating engine can be. These templating engines are meant to help with …

Read More

Array to JSON with toJson() Method

toJson() is one of the most helpful and commonly used method in Laravel. In simple concept, toJson() returns the JSON encoded data version of laravel …

Read More

Different Ways to Redirect User

redirect() is one of the most used and popular helper function. This function redirects users to different URLs of the website. By using this method, …

Read More

Notebook With Laravel 7 and Vue.js

notebook

Notebook is a simple free-form information gathering web application. It is designed using Laravel 7 and Vue Js. This application provides a high-quality user experience …

Read More

How to Improve Routing In Laravel

Routing allows the user to route application requests to its appropriate controller. Laravel has an inbuilt API which is really helpful and time-saving. Hence, it …

Read More