Beginner Guide to PHP Namespace
Background
When I started using PHP (back when when I use it, it was PHP 7), there was a peculiar feature called namespace. Usually it's used this way
<?php
namespace App\Http\Controller;
use Carbon\Carbon;
class PostController {
// some code.....
alexdoff.hashnode.dev5 min read