No, It is not possible to directly link one route to two controllers.
However, in the comment section is determined that there is no actual need for one route to link to multiple controllers, but rather a single controller that controls multiple models.
You could create a single controller BudgetController
that controls both incomes and expenses. Here is an example for showing a list of both on the same page:
routes/web.php
Route::resource('budget', 'BudgetController');
app/Http/Controllers/BudgetController.php
public function index()
{
return view('budget.index', [
'incomes' => Income::all(),
'expenses' => Expense::all(),
])
}
resources/views/budget/index.php
<table>
@foreach($incomes as $income)
<tr><td>{{ $income->amount }}</td></tr>
@endforeach
</table>
<table>
@foreach($expenses as $expense)
<tr><td>{{ $expense->amount }}</td></tr>
@endforeach
</table>