• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Tutsplanet

Tutsplanet

Free Technical and Blogging Resources

  • Home
  • Web Hosting
  • Programming
  • Plugins
  • Twitter Trends
  • Tools
  • About Us

Editorial Staff

Programming

How to organize email testing in PHP?

Jul 17, 2022 Editorial Staff Leave a Comment

What is PHPMailer and how do you use it to send test emails via SMTP in PHP? Find out this and more on email testing in PHP here. How to organize email testing in PHP PHP is one of the most popular languages for web development, so it’s no wonder that email sending and testing…Continue Reading

Programming TagsLaravel

How to Substract and Add Hours in Laravel Using Carabon?

Jun 10, 2022 Editorial Staff Leave a Comment

In today’s article we will illustrate how to use the Carbon library to add and subtract from a given time in Laravel. As you know already, Laravel is capable of doing pretty much anything. This is tested with Laravel7, 8,9 versions. Here you need to take note of Carbon – Well known PHP API for…Continue Reading

Programming TagsLaravel

How to Get Last Week Data in Laravel using Carbon?

Jun 7, 2022 Editorial Staff Leave a Comment

In today’s tutorial, we are showing how to get last week’s data in Laravel using Carbon. In other words, you need to pull all the orders received in the last week. In this case, last week does not mean the last 7 days, but it’s a full week starting from Monday to Sunday. For example,…Continue Reading

Programming TagsLaravel

Differences between query() and input() in Laravel?

Jun 2, 2022 Editorial Staff 1 Comment

Differences between query and input

You may be wondering what’s the difference between method and method in Laravel. It’s mentioned straight away in the laravel docs. While the input method retrieves values from the entire request payload (including the query string), the query method will only retrieve values from the query string: The important aspects and the real difference between…Continue Reading

Programming TagsLaravel

Raw Queries in Laravel

Jun 1, 2022 Editorial Staff 1 Comment

Raw Queries in Laravel

Eloquent is the answer for all kinds of database operations in Laravel. As a matter of fact, which is a great solution for interacting with databases. But if we have complicated business logic/ complex MySQL queries, oftentimes we need to write raw queries in Laravel. A key concern about the usage of raw queries in…Continue Reading

Programming TagsLaravel

Laravel Eloquent Select Column as Alias

May 30, 2022 Editorial Staff Leave a Comment

Did you ever think about using an alias in the select columns while using Laravel Eloquent?. We cannot say it’s very Laravel specific, rather a MySql feature. Basically, when you join two or more tables in MySql, chances are very high that you will have the same column names multiple times in the result. This…Continue Reading

Programming TagsLaravel

Laravel 8 Eloquent updateOrCreate() Example

May 27, 2022 Editorial Staff Leave a Comment

In this post, we will explain about Laravel Eloquent updateOrCreate() method and its importance in our code. It’s very common that we have database operations in our application, like inserting customer details and updating that customer details in a later stage, or deleting customer details. For example, you have a function that is responsible for…Continue Reading

General

How to Set Scroll Bars to Always Display on Your Mac Os ?

May 25, 2022 Editorial Staff Leave a Comment

Scroll bars help you to scroll up and down in any application. We cannot expect everything in the viewing pane, if you need you to need to have giant screens to accommodate that. Each and every operating system are evolving day by day, and they bring new features every day. You might have noticed that…Continue Reading

PHP, Programming

How to use __invoke() in PHP?

May 18, 2022 Editorial Staff Leave a Comment

You might have seen function in famous frameworks or third-party libraries and wondering what this function does, you are in the right place. The magic method triggered when the object is being called as a function. The method can accept any number of parameters and is able to return mixed data types. To get triggered…Continue Reading

General TagsGoogle

How to Search for File Types on Google ?

May 17, 2022 Editorial Staff Leave a Comment

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

General

English Transition Words

Apr 8, 2022 Editorial Staff Leave a Comment

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

Programming TagsLaravel

What does Model::unguard() do in Laravel?

Mar 23, 2022 Editorial Staff Leave a Comment

What does Model::unguard() do in the database seeder file from Laravel 5?

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

Javascript, Programming

collect.js – A Laravel collection clone in JavaScript

Feb 25, 2022 Editorial Staff Leave a Comment

collection-like-laravel-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.

General

Three Wordle alternatives that you must try

Feb 9, 2022 Editorial Staff Leave a Comment

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.

General

How to win in SEO World using these Stop Words?

Feb 8, 2022 Editorial Staff Leave a Comment

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

Programming TagsLaravel

How to Export CSV file in Laravel Example

Feb 3, 2022 Editorial Staff Leave a Comment

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.

General TagsLaravel

How to create Your Own Custom Log File in Laravel

Jan 28, 2022 Editorial Staff Leave a Comment

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

Programming

Laravel db raw and whereRaw() where clause example

Dec 6, 2021 Editorial Staff Leave a Comment

whereRaw() in laravel

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

General

How to change the background color of PDF in Adobe Reader?

Nov 18, 2021 Editorial Staff Leave a Comment

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

Programming TagsLaravel

Laravel Artisan command for generating Request validation Class

Nov 16, 2021 Editorial Staff Leave a Comment

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

Programming TagsLaravel

Bind vs Singleton in Laravel. Which one to use, and when?

Nov 14, 2021 Editorial Staff Leave a Comment

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

Programming TagsLaravel

Attribute Casting with Laravel

Nov 8, 2021 Editorial Staff 1 Comment

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

Programming

How to create and download a Zip file with PHP

Nov 6, 2021 Editorial Staff Leave a Comment

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

Softwares TagsSoftwares

RecordCast Review: A simple and free screen recorder for you to try

Nov 2, 2021 Editorial Staff Leave a Comment

recordCast-review

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

Softwares TagsSoftwares

DesignEvo Review: Create Fancy Logos Online

Nov 2, 2021 Editorial Staff Leave a Comment

designevo-review

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

Softwares TagsSoftwares

DesignCap Review: Create Beautiful Designs Online for Free

Nov 1, 2021 Editorial Staff Leave a Comment

designcap-review

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

Programming TagsLaravel

How To Get HTTP Hostname In Laravel ?

Oct 30, 2021 Editorial Staff Leave a Comment

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

Programming Tagsjavascript, jQuery

Copy to Clipboard from a Textbox using jQuery/JavaScript

Oct 26, 2021 Editorial Staff Leave a Comment

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 TagsTwitter

How to Embed Someone’s Twitter Video in to a Webpage?

Oct 12, 2021 Editorial Staff Leave a Comment

twitterlogo

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

General TagsSoftwares

The Complete Guide for FlexClip Video Maker

Oct 12, 2021 Editorial Staff Leave a Comment

FlexClip

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

  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Interim pages omitted …
  • Go to page 19
  • Go to Next Page »

Primary Sidebar



Quick Links

  • Top 21 Website Ideas To Make Money Online in 2021
  • A Simple YouTube Video Downloader Script in PHP
  • The 50 Most Useful jQuery Plugins for Frontend Development
  • Replace “\n” with new line characters, using Notepad++
  • Using Third-Party Libraries in Codeigniter
  • Upload Multiple Images and Store in Database using PHP and MySQL.
  • Hierarchical Tree view Category Example in Laravel
  • Laravel Image Intervention Tutorial With Example
  • How to import sql file in MySQL database using PHP?
  • Free VAT Calculator Online



Subscribe

* indicates required



Search Here

Share

   



Hot topics

  • Replace “\n” with new line characters, using Notepad++ 60 views
  • How to enter new line in Microsoft Teams? 53 views
  • A Simple YouTube Video Downloader Script in PHP 38 views
  • Open a URL in a new tab using JavaScript 31 views
  • How to use Faker with Laravel ? 20 views
  • Add FTP/SFTP in Visual Studio Code 18 views
  • How to change PHP version on MAMP – Mac OSX 15 views
  • Solution: windows photo viewer opens each time save a pic file 15 views
  • Simple PHP Shopping Cart 14 views
  • Laravel Image Intervention Tutorial With Example 14 views

Categories

  • Design & Development
  • Drupal
  • Facebook
  • General
  • How To
  • ios
  • Javascript
  • Linux
  • Magento
  • Marketing
  • News
  • PHP
  • Plugins
  • Programming
  • Snippets List
  • Social Media
  • Softwares
  • Themes
  • Tips
  • Wordpress
  • YouTube























Copyright © 2022 · Planet on Genesis Framework · Powered By BunnyCDN . Network wallpapernoon.com