How to Recursively Change the Permissions of Files and Directories in Ubuntu?
To recursively change the permissions of files and directories in Ubuntu, you can use the "chmod" command with the "-R" option, which stands for "recursive". Here is the general syntax: <pre class="pr.....
How to Convert Array Key to Lowercase in PHP?
Whenever you require to create all array key in lowercase then you can create that without using loop. you have to just use array_change_key_case(), array_change_key_case function take two argument on.....
How to solve 'There are no commands defined in the "cashier" namespace' in Laravel
When i did start to learn "Laravel Cashier" and i was following step by step of laravel official document, but i run bellow command : <pre>php artisan cashier:table users</pre> At that time i found fo.....
How to Generate Dynamic Sitemap in Laravel?
Hey Guys, In this tute, we will discuss how to create dynamic sitemap in laravel. Here you will learn how to create dynamic xml sitemap in laravel. you can see how to generate sitemap in laravel. This.....
How to Convert Array Values to Lowercase in PHP?
Whenever you require to create all array value in lowercase then you can create that without using loop. you have to just use array_map(), array_map function take two argument one for php function "st.....
Trigger on After Delete with Update Query MySQL Example
Hi Guys, Now, let's see a tutorial of trigger on delete with update mysql example. We will look at an example of trigger after delete mysql example. I’m going to show you about mysql after delete tr.....
How to Parse JSON in JQuery Ajax?
Hello Folks, In this profound tutorial, we will learn parse json in jquery ajax. This article will give you a simple example of parse json jquery ajax response example. This article will give you a si.....
How to Get User Agent Value in Laravel?
Hey Artisan, This extensive guide will teach you how to get user agent in laravel. step by step explain laravel 10 get user-agent. you will learn laravel user agent package. you will learn laravel get.....
How to Use Foreach Object in Node.js?
In Node.js, you can use the <span class="highlighter">forEach()</span> method to iterate over an array of objects and perform an operation on each object. Here's an example of how to use <span class=".....
Laravel 5.2 API using JWT authentication tutorial from scratch example
In this post i want to share you how to create API in Laravel 5.2 with using JWT, If you are beginner then It is a very simple way to create and it is pretty easy to undestand how to create API. After.....