Simple question, but the answer seems quite hard to come by. In Codeigniter, I could load the url helper and then simply do
echo base_url();
Laravel < 5.2
echo url();
Laravel >= 5.2
echo url('/');
Hope this helps you