We all search Google for our queries. Normally, we search for phrases and expect results as web pages. Did you know that you can Google more than just standard web pages? Google can help you find books, documents, spreadsheets, presentations, Adobe files, and much more with the help of file type search. File types that…Continue Reading
English Transition Words
The transition words are used to link words, phrases, or sentences. They help the reader to progress from one idea to the next idea while reading a text. English transition words are very essential since they not only connect ideas but also can introduce a certain shift, contrast or opposition, emphasis or agreement, purpose, result…Continue Reading
What does Model::unguard() do in Laravel?

does temporarily disable the mass assignment protection of the model, so you can create records without worrying about the fillable. It’s not recommended to it for the users, but only for specific task such as seeding etc. For example, We have a table in our application. $table->double(‘name’); $table->boolean(‘status’)->default(false); And in the model protected $fillable =…Continue Reading
collect.js – A Laravel collection clone in JavaScript

Are you familiar with the collection in Laravel, then you will love this Collect.js, a Javascript counterpart of Laravel Collection. Collect.js offers an almost similar API to Laravel collections.
Three Wordle alternatives that you must try
Wordle, the famous word puzzle game took the world by storm. Recently, it got acquired by New York Times newspaper. Today we introduce 3 wordle alternates that you must try, and win.
How to win in SEO World using these Stop Words?
It is very important to know the usable stop words for a better SEO experience throughout your articles. We have curated a list of SEO stop words in this article. Just imagine you are targeting the keyword “Plumbers New York city”, there is no way you can insert this keyword in the article, otherwise you…Continue Reading
How to Export CSV file in Laravel Example

Exporting data to CSV is one of the many features most applications should have. Sometimes it would be a report for your marketing or finance team or a list of products in your inventory.
How to create Your Own Custom Log File in Laravel
Laravel is a well-known PHP framework for web artisans. In today’s tutorial, we will discuss how to create our own custom log file in Laravel. Logs are a very important part of an application as it records user journey in simple text files, so the administrator can look into these files if there is any…Continue Reading
Laravel db raw and whereRaw() where clause example

Laravel Eloquent provides endless methods to query your database and make good collections. But if you need to have normal MySQL expression in Laravel eloquent, such as replace white spaces from a field when using the where condition. This will help to push some of the limits that are with the Eloquent in Laravel. You…Continue Reading
How to change the background color of PDF in Adobe Reader?
Most of us had a really bad time while reading in the white background long time, whether it’s a pdf book or something else. However, we can set our PDF’s background as black or any other color, which will be good for the eyes at least. Adobe Reader has a feature to change the background…Continue Reading
Laravel Artisan command for generating Request validation Class

The command can be used to generate new request validation request classes. You can input the name of the class to generate the class. The name will be used as the name of the class and the file. Follow the example below to generate a Request class in Laravel. php artisan make:request ProductPostRequest A new…Continue Reading
Bind vs Singleton in Laravel. Which one to use, and when?

In today’s tutorial, we are discussing bind() and singleton() methods in Laravel. In general, you might have encountered this a lot while you programming in Laravel based apps. We use in the event of reusable classes or objects ( the object is created each time when it is called). So each instance of the class…Continue Reading
Attribute Casting with Laravel
Laravel is well known MVC framework written in PHP programming language. Over the years, it became the next tool in your belt for a plethora of programmers. When we work with MVC, we have to deal with models and attributes as this is the layer that makes contact with our database. Oftentimes, we need to…Continue Reading
How to create and download a Zip file with PHP
Today we discuss how to create a zip file from a folder of images and download it from the browser. As result, we will have all the files in a folder archived to a zip file and downloaded to our computer. Important to realize we use built-in PHP class to achieve this. Class which allows…Continue Reading
RecordCast Review: A simple and free screen recorder for you to try

Being the best video screen capture software for PC, capture anything worth sharing on your screen with the all-in-one online screen recorder and video editor RecordCast. You can record videos, save them and come back later for editing. It is free to use. Moreover, Recordcast is video recording software that allows you to capture your computer screen…Continue Reading
DesignEvo Review: Create Fancy Logos Online

Paying a designer to create custom logos is not cheap. It can also be very expensive to pay for design software like PhotoShop or Sketch, and let alone learn how to use it. Moreover, if you’re more of a UI designer who struggles with logos, this can be a challenge. However, if you want to…Continue Reading
DesignCap Review: Create Beautiful Designs Online for Free

Are youLooking for the best free poster and flyer maker online?. If your answer is yes, continue reading this DesignCap review and learn how to create an amazing free poster and flyer using DesignCap. Have you ever tried to make a poster for your social media or personal channel?. If so, how did you manage…Continue Reading
How To Get HTTP Hostname In Laravel ?
In today’s tutorial, we discuss how to get the HTTP hostname in the Laravel project. The first thing to remember, we have helper that can be used anywhere in the Laravel projects such as blade templates, controllers, models, etc. So this function is equipped with two methods as shown below to get the HTTP hostname…Continue Reading
Copy to Clipboard from a Textbox using jQuery/JavaScript
In this tutorial, I will show you how to copy text to the clipboard on a button click using jQuery from a textbox. It’s very helpful for the users to click a button to copy everything in a textbox, instead of selecting and copying using the Mouse. So today’s tutorial, we will have a textbox…Continue Reading
How to Embed Someone’s Twitter Video in to a Webpage?

Twitter is one of the biggest social media that allows users to express their thoughts to the public. Oftentimes people use videos to engage with their friends, audience, customers, etc. Moreover, when sharing content everybody thinks about a retweet(terminology Twitter uses for sharing content inside the platform). What if you want to share the content…Continue Reading
The Complete Guide for FlexClip Video Maker

In today’s world, video making is a profession for many, so you need professional tools to create your stunning videos. In this article, we introduce FlexClip, a simple yet powerful video maker that creates marketing videos and family stories in minutes. Everybody watches YouTube videos, but did you ever thought about how these amazing videos…Continue Reading
Bootstrap 5 Enabled Starter template
A starter template means that you can start your features using this template. All the necessary boilerplate CSS, Javascript will be there, so you just need to worry about your new stuff. In this example, we have added a Twitter Bootstrap 5 enabled starter HTML template. <!doctype html> <html lang=”en”> <head> <!– Required meta tags…Continue Reading
Automating FTP Deployments with GitHub Actions

In today’s article, we are talking about how to use GitHub Actions as a replacement for your traditional FTP clients. Yes, we can use GitHub Actions as a normal FTP client such as Filezilla, CoreFTP, etc without worrying about navigating through folders. Just imagine that you have a project in Codeigniter or any framework/CMS of…Continue Reading
The 8 best URL shorteners of 2021
Since the Google URL shortener was shut down, the netizens were on the search to find the next best URL shortener. Of course, there is a single answer for this, and it depends. It really matters what do you want from them, and how it fits into your ecosystem. In today’s article, we are introducing…Continue Reading
How to call static function from Helper in Laravel blade file?
We have already discussed creating custom helper functions (Global Function) in Laravel in a previous article. So today’s article we discuss a different approach to achieve the same feature, and this function can be called from the blade template as well. Step 1. Add this code in your composer.json file located in the root directory…Continue Reading
Deleting an element from an array in PHP
There are two different ways to delete an element from arrays in PHP. Method #1 unset() Keep a note on this that, index won’t change after you use to delete an element from an array. But you can use just after to re-index the keys. $array = [ 0 => “Pen”, 1 => “Paper”, 3…Continue Reading
Laravel WhereHas() Eloquent Example
WhereHas() is a Laravel eloquent method, which helps to define additional query constraints on your queries, such as filtering your books with some author name. For example, return all the books if it matches an author named Charles Dickens. But whereHas() often confused with some other terms in Laravel, has() and with(), which is very…Continue Reading
How to Rollback migration in Laravel ?
When you check the migration table in Laravel, you can see a batch number with every record. So, when you run the rollback command, it rolls back each migration that was part of the last migration. php artisan migrate:rollback The above command will roll back the last batch of migrations which may include multiple migration…Continue Reading
What are the basic programming concepts and the Fundamentals used in Coding?

A long time ago, coding was one of the hobbies for a few fiddling with computers. But now it has become a mandatory qualification in career skills. Job recruiters are also willing to pay a lot for people who are skilled in programming. Anyone can become a professional if they know the core concepts and…Continue Reading
How to Create PDF File From HTML Form Using Fpdf?
In today’s tutorial, we illustrate how to convert HTML to pdf with PHP. As you know already, PDF stands for “portable document format”, a format that is used when we need to save a file that cannot modify but can be printed easily. In today’s article, we will show you have to post a form…Continue Reading