Browsing Category
Laravel 5.7
How to Change The Naming of Datetime Fields in Laravel
In this article, we will discuss how to change the naming of datetime fields in Laravel. As we know, Laravel provides rich features to fulfill our needs. It's easy to change the naming of datetime fields.
Follow the example for…
Basic Use of Model Factories in Laravel
In this article, we will discuss the basic use of Model Factories in Laravel. Laravel comes with the feature called model factories that are offered to made fake models quickly. It's used in the database testing and database seeding. Let's…
Laravel Custom Helper Functions File
In this article, We will discuss how to add in Laravel custom helper functions files. We know that Laravel provides lots of inbuilt features. But sometimes we need to create some reusable functions, which contains as required valuable…
Laravel Default Authentication Setup
In this article, We will discuss Laravel Default Authentication Setup. Laravel is a great PHP framework and currently, it's the most starred PHP project on GitHub. Today, I will show you how easy it to add authentication to it without…
How to install Laravel 5 with Xampp using Composer
In this article, we are discussing how to install Laravel 5 with xampp using composer. I'm assuming you are familiar with the xampp.You will need to make sure your server meets the following requirements:PHP >= 7.1.3
OpenSSL PHP…
Setup Virtual Host in Windows with Xampp Server
In this article, we are discussing Setup Virtual Host in windows on xampp server. You must be aware of XAMPP Server before this tutorial implementation. XAMPP is a cross-platform open-source web server bundle. Anyone, who is new to the…
Understanding Laravel Middleware
In this article, we will discuss Laravel Middleware. As per the name Middleware, Its like a mechanism which works between HTTP Request and Response. Laravel has default middleware for user authentication, CSRF token verification and etc.…