if you are a laravel developer and want to know how to setup Spatie Media Library in Laravel 8. Spatie Media Library is easily manage files and images associated with your models. Step 1: Install the package Step 2: Publish the config file Step 3: Add the Trait to model Step 4: Migrate the database […]
Category: PHP
Beginner: create Laravel controllers
Hi, If you are a beginner and want to know how to create laravel controller so this post is very useful for you. in this blog I will explain how to create controller in Laravel. Controller is the main key component in Laravel. it will handle all user request and return appropriate response according to […]
Laravel Passport integration
if you want to develop mobile application so Web Services is very important, you need to create API. As we know laravel is very popular because of creating API but if you are beginner and want to know how to create API and webservices you are in right place. I will show how to create simple […]
How to send OTP in the email on registration using Laravel API
if you want to apply send OTP on user registration and after OTP verify make and update to true is_email_verified field in users table. user can able to login if field is_email_verified is true .I understand you have already is_email_verified in users table. Step 1. I am creating new migration for adding new field in […]
A quick guide to Install Laravel 8 on Windows 10 localhost Wamp server
Laravel is a web application framework created in PHP language. it is open-source framework. it provide functionality for building powerful and robust applications. it provided a structure that saves lots of time and plan for large applications to develop in laravel. Below I mentioning some steps to install laravel in Wamp server. Table of Contents […]
how to generate JSON file with read content from Google spreadsheet in php?
I am explaining you, how to generate JSON file with read content from Google spread sheet in php.. if you have any requirement to read Google spead sheet and generate JSON file or want JSON type content so this post is very userful to you. I am explaining, you can get all content from Google […]
how to calculate number of Age from date of birth in PHP?
I am explaining you, how to calculate number of Age from date of birth in PHP. if you want to show user’s age from date of birth so you can use this process and show Age in php. here I will use some function like date(), date_create() and date_diff() that need to used to calculate […]
PHP how to get all the keys of an associative array?
I am explaining you, how to get all the keys of an associative array in PHP. we need to use PHP array_keys() function to extract the keys in an associative array. Example : Output : Otherway, I will apply foreach loop so it will also show key and its related values. Example : Output : […]
How to merge two array into single array in php ?
I am explaining you, how to merge two array into single array in php. we can use array_merge() function in php code so that will merge two different array into single array.here I having two array called arrayfirst and arraysecond array, I will merge both array into single array with arraymerge new array. Example : […]
PHP How to check if a variable is null?
I am explaining you, how to check if a variable is null or not in PHP. I will check null values through is_null() function in PHP. Example : Output : Azhar ShaikhHello, Welcome to webdeveloperindia.in. I am a full-stack web developer. Email – [email protected] | Skype – azaruddin23. I have knowledge of PHP, Laravel, Magento […]