360 Stories by Md Obydullah
Hi artisans, in this short article, I’m going to write about the pass by value and pass by reference. I’ll show examples in PHP... Hello, sometimes we need to update model & relationship tables data at the same time. We can do it very easily using Laravel eloquent.... Hi artisans, in this article, I’m going to show how to deplay a Laravel or Laravel + Vue/React application to Heroku. Let’s get started:... In this tutorial, we are going to create a single page application with Auth using Laravel and Vue 3. Let’s start: Tested with: Laravel... To debug Laravel application, sometimes we SQL Query logging. In this article, I’m going to share how to keep log of all queries in Laravel.... To debug in PHP we use var_dump(), print_r() methos. Laravel provides a function to debug is called dd(). In this article, we are going... Hi artisans, sometimes we need to ban users from our application. It’s an important feature. Laravel auth provides many functionalities. Unfortunately, they don’t provide... Hi devs, in this article, I’m going to show how to pass function as parameter in JavaScript. Let’s have a look at some examples:... Sometimes we need to filter data. To make filter pretty, we need range slider. In this article, I’m going to show how to make... In this short article, I’m going to share how to truncate string in Laravel. Laravel 7 offers a more object-oriented, fluent string manipulation library... A Denial of Service (DoS) attack is an attempt to make an online service unavailable by overwhelming it with traffic. In this article, I’m... Sometimes, we want to share a file with someone for a limited time. We can easily do it in Laravel. In this article, I’m... In this article, I’m going to share how to debug Laravel application with laravel-debugbar. This is a package to integrate PHP Debug Bar with Laravel. It... Global scopes allow you to add constraints to all queries for a given model. Laravel’s own soft delete functionality utilizes global scopes to only... In this article, we are going to learn how to set strong password validation rule in Laravel. Let’s get started: Table of Contents Make... In this article, I’m going to show how to install the Imagick PHP extension on RHEL/CentOS 7. Let’s get started: Table of Contents Install... According to Wikipedia, In computer networks, rate limiting is used to control the rate of requests sent or received by a network interface controller... We can share information between any components using EventBus. In Vue 2, using $emit we can do this task. But In Vue 3, $on,...