MAmostafa amineinmostafaamine.hashnode.dev·Nov 1, 2022 · 3 min readHow to use Laravel SessionWhat is a Session? Sessions are used to store information about the user temporarily across the requests. How to configure your session file in laravel The session configuration file is stored in config/session.php, from this file you can change the ...00
MAmostafa amineinmostafaamine.hashnode.dev·Oct 18, 2022 · 1 min readHow to Add PhpMyAdmin To laragon 👨💻In laragon, the default database administration tool is HeidiSQL, But you can also add PHPMyAdmin in laragon easily. Install PhpMyAdmin first, you have to install the latest version of PhpMyAdmin from their website PhpMyAdminin then extract the arch...00
MAmostafa amineinmostafaamine.hashnode.dev·Mar 7, 2022 · 2 min readTop JavaScript Shorthands TechniquesHello Everyone, in this article you will see Top JavaScript Shorthands Techniques to speed up your tasks 1. Declare more than one variable in one line Normal method let a = 1; let b = 2; let c = 3; Short method let a=1,b=2,c=3; 2. The Ternary Op...00
MAmostafa amineinmostafaamine.hashnode.dev·Mar 3, 2022 · 1 min readTop CSS resources to improve your productivityHello everyone, in this article, you will see a list of top CSS resources to improve your productivity and your skills So let's start 1- FANCY-BORDER-RADIUS FANCY-BORDER-RADIUS help you to generate unique shapes with the help of CSS3 border-radius p...01Y
MAmostafa amineinmostafaamine.hashnode.dev·Feb 26, 2022 · 3 min readHow to Use Regular ExpressionsIn this article, we will see the most important thing in JavaScript that you need to learn right now Note that regular expressions are not only supported in javascript but in many languages including python 1-First of all, let’s see what mean regula...00