I was wondering what would be the difference between Forward Slash "/" and Backslash "\" in php and Laravel. For example in every controller you have:
use Illuminate\Http\Request;
but if there was Forward slash instead of Backslash, it does not work:
use Illuminate/Http/Request;
and it throws an error:
"syntax error, unexpected '/', expecting ',' or ';'"