I'm working in a new project in laravel.I am in starting state of the project.At initial , I try to run the install spatie/laravel-backup package from composer. It shows the binding Resolution Exception. then , i leave to installation. I then start to make dynamic the heading. and try to redirect the title button to the welcome page through route.but it still shows the bindingResolutionException as of before.
web.php
use IlluminateSupportFacadesRoute;<br> use AppHttpControllers; Route::get('/', function () { return view('welcome'); })->name('landing');
Try this
composer remove spatie/laravel-backup php artisan cache:clear php artisan config:clear composer require spatie/laravel-backup composer update php artisan optimize
2.1m questions
2.1m answers
60 comments
57.0k users