Vendor show template edited

This commit is contained in:
Burak Civan
2021-06-30 11:35:27 +03:00
parent 9d85a806cd
commit 697ac984d9
4 changed files with 138 additions and 75 deletions

View File

@ -329,4 +329,11 @@ class Vendors extends Controller
return redirect()->route('bills.create')->withInput($data);
}
public function createPayment(Contact $vendor)
{
$data['contact'] = $vendor;
return redirect()->route('payments.create')->withInput($data);
}
}