close #2155 Added: Creating new Bill&Invoice from Customer Screen

This commit is contained in:
Cüneyt Şentürk
2021-06-28 12:47:56 +03:00
parent d4507160d9
commit 85fd9ffcae
5 changed files with 24 additions and 0 deletions

View File

@@ -70,6 +70,10 @@
@stack('vendor_edit_button_start')
<a href="{{ route('vendors.edit', $vendor->id) }}" class="btn btn-info btn-block"><b>{{ trans('general.edit') }}</b></a>
@stack('vendor_edit_button_end')
@stack('vendor_create_bill_button_start')
<a href="{{ route('vendors.create-bill', $vendor->id) }}" class="btn btn-white btn-block"><b>{{ trans('bills.create_bill') }}</b></a>
@stack('vendor_create_bill_button_end')
</div>
<div class="col-xl-9">

View File

@@ -70,6 +70,10 @@
@stack('customer_edit_button_start')
<a href="{{ route('customers.edit', $customer->id) }}" class="btn btn-info btn-block"><b>{{ trans('general.edit') }}</b></a>
@stack('customer_edit_button_end')
@stack('customer_create_invoice_button_start')
<a href="{{ route('customers.create-invoice', $customer->id) }}" class="btn btn-white btn-block"><b>{{ trans('invoices.create_invoice') }}</b></a>
@stack('customer_create_invoice_button_end')
</div>
<div class="col-xl-9">