skip to Main Content

Target class does not exist. Routing Prefix Laravel 9

I am learning Laravel 9, and I got a problem Target class [AdminDashboardController] does not exist. when using prefix routing. Is someone can help me to fix it? this code on routes/web: Route::prefix('admin')->namespace('Admin')->group(function(){ Route::get('/','DashboardController@index')->name('dashboard'); }); this code on AppHttpControllersAdminDashboardController: namespace…

VIEW QUESTION

View ['view.name'] not found – Laravel

why I have this Problem please? this is my blade code in laravel 9: <form class="row g-3" method="POST" action="{{ route('users.store') }}" > @csrf @include('users.partials.form') <div class="col-12"> <button class="btn btn-primary" type="submit" >Add user</button> </div> </form> this is the structure of my…

VIEW QUESTION
Back To Top
Search