HTML crash course for beginners with example
- Ahmed Shaltout
- December 7, 2021
- beginners
- Course
- crash course
- HTML
- web development
- Website
In this HTML crash course, we will learn the basics of HTML and how it works with an example project of creating a blog that consists of a home page and a post page.
Read MoreLaravel Breeze Tutorial
- Ahmed Shaltout
- December 4, 2021
- authentication
- Breeze
- Laravel
- Laravel Breeze
Laravel breeze the starter kits you need to build your new application faster. Breeze offers the authentication for your app, automatically builds the controllers, views, and routes for registration, login, password reset, and email verification.
Read MoreHow to put Laravel app in maintenance mode
- Ahmed Shaltout
- November 18, 2021
- down
- Laravel
- maintenance
- maintenance mode
Sometimes, you don’t need your visitor to be on your website while maintaining it. Laravel has a magic feature called the maintenance mode.
Read MoreHow to add a new column to an existing table via Laravel migration
- Ahmed Shaltout
- November 13, 2021
- database
- Laravel
- migration
Sometimes we need to add a new column or update an existing one to an existing table in the database after the migration. it’s so easy to do, we will add a new column and rename and change the data type of another one. let’s get started.
Read MoreVerification via OTP in Laravel, sending a one-time password
- Ahmed Shaltout
- November 7, 2021
- Laravel
- otp
- password
- verification
send your end-user 4 to 6 digits codes to verify their mobile number or verify an action such as resetting a password, log in via mobile
Read MoreHow to send email from different email addresses in Laravel
- Ahmed Shaltout
- October 26, 2021
- Laravel
- notifications
You can configure multiple emails in Laravel to send notifications from, let’s say you need to send welcome notification from no-reply@example.com and new order notification from orders@example.com, If that is what you want to do so this lesson is here for you.
Read MoreHow to force Laravel to generate HTTPS instead of HTTP for the route, URL, and asset functions.
- Ahmed Shaltout
- August 17, 2021
- connection
- http
- https
- Laravel
Your website domain starts with ‘https://’ but when you generate a URL inside your Laravel application it starts with ‘http://’ and you find the browsers give you that your connection is not secure alert.
Read MoreHow to Create Vuejs Website with Vue CLI And Vue Router
- Ahmed Shaltout
- August 9, 2021
- Vue
- Vue CLI
- Vue Router
- Vuejs
- Website
The first two things that come to my mind when I think about creating a website with Vuejs are Vue CLI and Vue Router, but Why? First, Vue CLI makes
Read MoreLaravel Secure RESTful API CRUD With Access Token tutorial
Sometimes we need to build a single-page application or we just need two applications to talk to each other for example backend Laravel app needs to communicate with the frontend Vuejs app, here comes the RESTful API solution.
Read More