Merhabalar herkese,
form işlemini post ettiğim zaman "Attempt to read property "headers" on string" hatasını alıyorum ne yaptıysam bir çözüm bulamadım yardımcı olursanız çok sevinirim.
Controllerım bu şekilde
public function store(IncomeAndExpenseRequest $expenseRequest)
{
$expenseRequest->user()->income()->create($expenseRequest->validated());
return redirect()->route('budget.index');
}