Delete Local Branch Run this git command to delete local branch git branch -d <branch> git branch -D <branch> (forcefully delete local branch) Delete Remote
Laravel artisan commands on server
We are using Laravel artisan commands in localhost for create some laravel resources like creating controllers, models, middleware, jobs, etc. But on serve, we have
Clear caching in Laravel
We can clear cache using command line with Laravel artisan commands. Run following command in command line one by one. Now we can clear all
How check php extension enabled
We can check this by 3 ways. We can cUrl, soap etc extensions. php -m // In command line it will return all enabled extension
How to use curl in php
cURL is a php library and stands for the client Url, with the help of cURL we can send files and download data over http
Dependency Injection In Php
Dependency Injection(DI) is a part of software design. DI is a procedure for managing object dependencies with another object so it will eliminate hard-coding dependencies
How to create custom post types in WordPress
By default WordPress has some post type already but if we want to add new post type like if we want to add products in
Theme development in wordpress
Here we are going to learn about WordPress theming. How can we create or develop own theme ? Here we discuss about some main ideas
HTTP Response Status Codes
HTTP response code shows that a HTTP request has been completed with some codes like 200, 201 etc. We can understand it like when a
Php Show All Errors
We can show all errors and warning in php with ini_set. Write this two lines In index.php or php.ini or main file of your project.