What is laravel backpack and why we use it? The backpack is a collection of laravel packages that help us to create a quick and customized admin panel. Its main goal is to provide a code for admin panels and eliminate writing code that repeats in every module. Installation: >> run the below command in your […]
Upload images to your S3 instance using Laravel
S3 is a package of Amazon Web Services(AWS), where we can store a large number of files. So, basically, it is a storage device. It has one big advantage. You can configure the permission access of files from your AWS Console. Configure S3 with Laravel: <> open the link https://aws.amazon.com/console <> hover your mouse on […]
How to use cron job in Laravel?
First, we should know what is a cron job? Cron is a Linux tool, which schedules a command or script on the server to run automatically at a specific time interval. That means no event is needed to run the cron page. Laravel gives us a simple and easy process to activate cron in our […]
Restful API In Laravel 5.5 Using Jwt Authentication in Ubuntu
Rest is a stateless client-server protocol, where each HTTP requests contains all the information to run it. So, there is no need to remember the previous state, which makes the API become stateless. Using API, we can easily create web services that connect with our codebase/database and getting data either in XML or JSON format […]
How to use MySQL in Ruby on Rails on Ubuntu?
Ruby on rails uses sqlite3 as a default database which is good for small application. If your project size is big, i.e. you need to handle large data throughout your project then MySQL database is a better option. If your machine already has a MySQL, then there is no need to install it again. In case, […]
How to install Visual Studio Code in your Ubuntu environment?
Microsoft now provides packages to install Visual Studio Code in Ubuntu environment. Isn’t it amazing to know this fact? Well, so let me tell you some other interesting things about the Visual Studio Code before proceeding to the installation part. Benefits of installing the Visual Studio Code • You can use command line prompt […]