Merge pull request #2167 from brkcvn/vendor-show

Show template development done for Vendor page.
This commit is contained in:
Cüneyt Şentürk
2021-06-30 12:57:48 +03:00
committed by GitHub
7 changed files with 256 additions and 193 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);
}
}