Topic: Web Development

Laravel Request Lifecycle Explained Step by Step

When a request hits a Laravel app, many things happen before the final HTML or JSON response comes back.

If you are new to Laravel, this can feel confusing because you write a route and a controller, but the framework does much more in the background.

This article breaks down the full request lifecycle in simple steps, so you can understand what happens and where to debug when something goes wrong.

Read More...

JSX Emmet integration for VSCode

Emmet is very useful for writing code fast. But you will have to enable JSX support for Emmnet in VSCode. The procces is very easy. First open VSCode settings.Go to Extensions > Emmet and add item javascript with valu

Read More...

I don't hate JQuery

Should I hate a library or framework ? My answer is “No”. Every library or framework is created for a reason. If that matches your needs you can use it in your projects otherwise do it on your own. Nothing to be hated he

Read More...

Test sending emails in PHP with XAMPP and MailHog

Sending mail with PHP is easy. We can test it with a local SMTP server. MailHog is very useful for this purpose.

MailHog

MailHog is program thats creates a local SMTP mail sever for testing purposes. Let’s see how to configure MailHog.

Read More...

PHP 05: PHP comments

Comments are the part of the PHP code , that is not executed. It’s a note note to the person who is reading the code.

Read More...