bo3bdo Blog

bo3bdo Blog - A Blog Made For bo3bdo

Welcome to my blog. Short posts with 🔥hot tips for a quick read.
List Of Tags
Html - browser - Laravel - PowerShell - Ubuntu - Git - Apache - PHP - MySQL
image

Super Collection of 4 Cheat Sheets

Published 10 months ago 1 Min Read 286 comments
Super Collection of 15 Cheat Sheets ➤ HTML ➤ CSS ➤ JavaScript ➤ SQL These are all handcrafted by me and will definitely make you a 100% better web developer.
Read more →
image

Laragon

Published 10 months ago 2 Min Read 504 comments
I was using Xampp for local development until about a year ago when I found Laragon & I haven't looked back since. This is seriously the most powerful local development tool I have in my entire "developer toolkit". I started working for a new company about 2 months ago & their entire team was using various setups for local dev and were always encountering problems. Setting up a new project locally was always a nightmare for them due to mysql version conflicts, having to change php versions, etc. When I introduced Laragon to them, they were amazed at how easy it was to install, maintain and how flexible it was to update/switch their dependencies. My manager told me that since the team has started using Laragon for local dev, project setup time has gone down from an average of 6 HOURS, to less than 30 mins. AMAZING.
Read more →
image

Quick & Easy Ways to Speed - Laravel Website

Published 10 months ago 2 Min Read 365 comments
Quick & Easy Ways to Speed - Laravel Website Open up your composer.json file and look through each of your dependencies. For each of your dependencies, ask yourself "do I really need this package?". Your answer is mostly going to be yes, but for some of them it might not be.
Read more →
image

How to Install Bootstrap 5 in Laravel 9 With Vite

Published 10 months ago 9 Min Read 136 comments
Bootstrap is a free and open-source web development framework. It’s designed to ease the web development process of responsive, mobile-first websites by providing a collection of syntax for template designs. In other words, Bootstrap helps web developers build websites faster as they don’t need to worry about basic commands and functions. It consists of HTML, CSS, and JS-based scripts for various web design-related functions and components. Bootstrap 5 is the newest version of Bootstrap.
Read more →
image

Install Laravel Valet Linux+ development environment on Ubuntu System

Published 10 months ago 5 Min Read 405 comments
The official Laravel Valet development environment is great if you are an Apple user. But there is no official Valet for Linux or Window system. But we have two different versions of the Valet for Linux system created by the community. These are: cpriego/valet-linux (Valet Linux) genesisweb/valet-linux-plus (Valet Linux+) If we compare both, Valet Linux+ has more features. For example, it provides MySQL database handling from command-line, MailHog, Redis, Sharing Sites on LAN, Securing Sites With TLS (HTTPS), etc. So, In this article, I will show you how to install valet-linux-plus in your Ubuntu system. Requirements
Read more →
image

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu 22.04

Published 10 months ago 31 Min Read 357 comments
Introduction A “LAMP” stack is a group of open source software that is typically installed together in order to enable a server to host dynamic websites and web apps written in PHP. This term is an acronym which represents the Linux operating system with the Apache web server. The site data is stored in a MySQL database, and dynamic content is processed by PHP. In this guide, you’ll set up a LAMP stack on an Ubuntu 22.04 server.
Read more →
image

Creating Your Own PHP Helpers in a Laravel Project

Published 10 months ago 7 Min Read 401 comments
Laravel provides many excellent helper functions that are convenient for doing things like working with arrays, file paths, strings, and routes, among other things like the beloved dd() function. You can also define your own set of helper functions for your Laravel applications and PHP packages, by using Composer to import them automatically.
Read more →
image

Adding estimated time to read an article in Laravel

Published 10 months ago 1 Min Read 115 comments
hen you want to extend some of the classes’ functionality in Laravel, Macros are your best bet. Your imagination is the only limit to what you can do with macros. For instance, I have recently come across a handly little macro shared by Marcel Pociot that gives you the estimated reading time for the given text(s). Here’s how the macro looks like.
Read more →