How to Create URL Shortener Through Laravel

Step 1: Create Project Step 2: Create Table Step 3: php artisan make:model ShortLink app/ShortLink.php Step 4: Create Route Step 5: Create Controller Step 6: Create View…

Read More

PHP | Difference between array_slice and array_splice

Arrays in PHP are variables that can holds multiple values. There are many methods for accessing and manipulating arrays. The methods array_slice () and array_splice () are…

Read More

PHP | array_merge() and array_merge_recursive() functions

PHP array_merge() This array function is used to merge or combine multiple arrays into one new single array. In simple if their are two arrays as array1…

Read More

PHP | Multidimensional arrays

Multi-dimensional arrays is a type of arrays which stores an another array at each index instead of single element. In simple words, multi-dimensional arrays as array of…

Read More

PHP | Strings & Built-in String functions

String is a stream or collection of character which is written in quotes. For example: – ‘D’ is taken as Character, and whereas “DevOpsschool” is a String….

Read More

PHP | Data Types

In PHP, Data types are used to declare one particular type of data as in all programming languages. Data Types define the type of data a variable…

Read More

Why PHP Is Still So Important for Web Development?

PHP (Hypertext Preprocessor) is a general-purpose scripting language that can be used to develop dynamic websites. It was from the first server-side languages that could be embedded…

Read More

How to Upload Image in Laravel with Ajax

In this tutorial im going to describe how to upload image in larvel with Ajax example. Please follow mentioned below. First let’s go to install laravel project…

Read More

Laravel Avatar Image Upload Tutorial With Example

In this tutorial im going to learn how to upload profile image of user in Laravel. By default, Laravel gives only registration form includes only the name,…

Read More

How to Store Data in Pop-Modal in Laravel

In this tutorial I’m going to describe how to store data in bootstrap 4 pop modal in laravel. Step 2-> Go to .env and set up connect…

Read More

A Complete Guide For Creating Contact Form In Laravel 5.8

In this tutorial i’m going to learn how to create working contact form in laravel in easy steps, please follow this tutorial i mentioned below. Step 1:…

Read More