How to use Carbon in Laravel 5.2 without use Carbon\Carbon;
added in every View and Controller..?
Add the following line to the aliases array in the config/app.php:
'Carbon' => 'Carbon\Carbon'
And you need to add use Carbon;
every class where you want to use it.