Skip links

Adding CKEDITOR 4 to laravel application

Its quite simple to add Ckeditor to any laravel application. Its a javascript library so it doesn’t matter which laravel version you are using. Steps to follow Visit Ckeditor Website – https://ckeditor.com/ckeditor-4/download/ Download full package (without Easy Image) Extract download zip forlder and paste ckeditor folder in your laravel public folder Now Simply Include ckeditor […]

Creating a CRM in Laravel

In this article, we will learn how to create a starter CRM in laravel. I will guide you step by step, command by command on how to create a CRM with a scalable database structure. All of this code is available on GitHub, feel free to download & extend. View Source Code on Github Step […]

Laravel Web Routes

In this Laravel article, I will be covering the most useful set of information about Laravel 8 Routes that you will require in almost all projects. If you have some information about how Laravel works, that will be great but, even if you are an absolute beginner at Laravel, this article will be helpful in […]

Creating REST API’s with Laravel Sanctum

Laravel Sanctum provides a featherweight authentication system for SPAs (single page applications), mobile applications, and simple, token based APIs. Sanctum allows each user of your application to generate multiple API tokens for their account. These tokens may be granted abilities / scopes which specify which actions the tokens are allowed to perform. Note: All API […]

Laravel Artisan Command List and Usage

To get a list of all artisan commands, type the following command in terminal window. Commonly Used Commands Command List Description php artisan list List of all artisan commands php artisan cache:clear Flush the application cache php artisan key:generate Set the application key php artisan make:controller ControllerName Creates a New Controller php artisan make:model ModelName […]