764 lines
22 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Http\Controllers\Incomes;
use App\Events\InvoiceCreated;
use App\Events\InvoicePrinting;
use App\Events\InvoiceUpdated;
use App\Http\Controllers\Controller;
use App\Http\Requests\Income\Invoice as Request;
use App\Http\Requests\Income\InvoicePayment as PaymentRequest;
use App\Models\Banking\Account;
use App\Models\Income\Customer;
use App\Models\Income\Invoice;
use App\Models\Income\InvoiceHistory;
use App\Models\Income\InvoiceItem;
use App\Models\Income\InvoiceTotal;
2017-09-14 22:21:00 +03:00
use App\Models\Income\InvoicePayment;
use App\Models\Income\InvoiceStatus;
use App\Models\Item\Item;
use App\Models\Setting\Category;
use App\Models\Setting\Currency;
use App\Models\Setting\Tax;
2017-11-16 20:27:30 +03:00
use App\Notifications\Income\Invoice as Notification;
2017-11-21 23:37:15 +03:00
use App\Notifications\Item\Item as ItemNotification;
2017-09-14 22:21:00 +03:00
use App\Traits\Currencies;
use App\Traits\DateTime;
2017-11-26 15:20:17 +03:00
use App\Traits\Incomes;
2017-09-14 22:21:00 +03:00
use App\Traits\Uploads;
2017-11-30 11:47:56 +03:00
use App\Utilities\ImportFile;
2017-09-14 22:21:00 +03:00
use App\Utilities\Modules;
use Date;
2017-11-16 20:27:30 +03:00
use File;
2017-09-14 22:21:00 +03:00
class Invoices extends Controller
{
2017-11-26 15:20:17 +03:00
use DateTime, Currencies, Incomes, Uploads;
2017-09-14 22:21:00 +03:00
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
$invoices = Invoice::with(['customer', 'status', 'items', 'payments', 'histories'])->collect();
2017-09-14 22:21:00 +03:00
2017-09-27 21:40:25 +03:00
$customers = collect(Customer::enabled()->pluck('name', 'id'))
->prepend(trans('general.all_type', ['type' => trans_choice('general.customers', 2)]), '');
2017-09-14 22:21:00 +03:00
$status = collect(InvoiceStatus::all()->pluck('name', 'code'))
2017-09-27 21:40:25 +03:00
->prepend(trans('general.all_type', ['type' => trans_choice('general.statuses', 2)]), '');
2017-09-14 22:21:00 +03:00
2017-09-27 21:40:25 +03:00
return view('incomes.invoices.index', compact('invoices', 'customers', 'status'));
2017-09-14 22:21:00 +03:00
}
/**
* Show the form for viewing the specified resource.
*
* @param Invoice $invoice
*
* @return Response
*/
public function show(Invoice $invoice)
{
$paid = 0;
foreach ($invoice->payments as $item) {
$item->default_currency_code = $invoice->currency_code;
$paid += $item->getDynamicConvertedAmount();
}
$invoice->paid = $paid;
$accounts = Account::enabled()->pluck('name', 'id');
$currencies = Currency::enabled()->pluck('name', 'code')->toArray();
$account_currency_code = Account::where('id', setting('general.default_account'))->pluck('currency_code')->first();
$customers = Customer::enabled()->pluck('name', 'id');
$categories = Category::enabled()->type('income')->pluck('name', 'id');
$payment_methods = Modules::getPaymentMethods();
return view('incomes.invoices.show', compact('invoice', 'accounts', 'currencies', 'account_currency_code', 'customers', 'categories', 'payment_methods'));
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
$customers = Customer::enabled()->pluck('name', 'id');
$currencies = Currency::enabled()->pluck('name', 'code');
$items = Item::enabled()->pluck('name', 'id');
$taxes = Tax::enabled()->pluck('name', 'id');
2017-11-26 15:20:17 +03:00
$number = $this->getNextInvoiceNumber();
2017-10-31 22:41:06 +03:00
return view('incomes.invoices.create', compact('customers', 'currencies', 'items', 'taxes', 'number'));
2017-09-14 22:21:00 +03:00
}
/**
* Store a newly created resource in storage.
*
* @param Request $request
*
* @return Response
*/
public function store(Request $request)
{
// Get customer object
$customer = Customer::findOrFail($request['customer_id']);
$request['customer_name'] = $customer->name;
$request['customer_email'] = $customer->email;
$request['customer_tax_number'] = $customer->tax_number;
$request['customer_phone'] = $customer->phone;
$request['customer_address'] = $customer->address;
// Get currency object
$currency = Currency::where('code', $request['currency_code'])->first();
$request['currency_code'] = $currency->code;
$request['currency_rate'] = $currency->rate;
$request['invoice_status_code'] = 'draft';
$request['amount'] = 0;
// Upload attachment
$attachment_path = $this->getUploadedFilePath($request->file('attachment'), 'invoices');
2017-09-14 22:21:00 +03:00
if ($attachment_path) {
$request['attachment'] = $attachment_path;
}
$invoice = Invoice::create($request->input());
$taxes = [];
$tax_total = 0;
$sub_total = 0;
$invoice_item = [];
2017-09-14 22:21:00 +03:00
$invoice_item['company_id'] = $request['company_id'];
$invoice_item['invoice_id'] = $invoice->id;
if ($request['item']) {
foreach ($request['item'] as $item) {
$item_sku = '';
if (!empty($item['item_id'])) {
2017-10-07 19:37:58 +03:00
$item_object = Item::find($item['item_id']);
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
$item_sku = $item_object->sku;
2017-11-21 23:37:15 +03:00
// Decrease stock (item sold)
$item_object->quantity--;
$item_object->save();
// Notify users if out of stock
if ($item_object->quantity == 0) {
foreach ($item_object->company->users as $user) {
if (!$user->can('read-notifications')) {
continue;
}
$user->notify(new ItemNotification($item_object));
}
}
2017-09-14 22:21:00 +03:00
}
2017-10-07 19:37:58 +03:00
$tax = $tax_id = 0;
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
if (!empty($item['tax_id'])) {
$tax_object = Tax::find($item['tax_id']);
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
$tax_id = $item['tax_id'];
$tax = (($item['price'] * $item['quantity']) / 100) * $tax_object->rate;
2017-09-14 22:21:00 +03:00
}
$invoice_item['item_id'] = $item['item_id'];
$invoice_item['name'] = $item['name'];
$invoice_item['sku'] = $item_sku;
$invoice_item['quantity'] = $item['quantity'];
$invoice_item['price'] = $item['price'];
2017-10-07 19:37:58 +03:00
$invoice_item['tax'] = $tax;
2017-09-14 22:21:00 +03:00
$invoice_item['tax_id'] = $tax_id;
$invoice_item['total'] = $item['price'] * $item['quantity'];
2017-10-12 18:06:40 +03:00
InvoiceItem::create($invoice_item);
// Set taxes
if (isset($tax_object)) {
if (array_key_exists($tax_object->id, $taxes)) {
$taxes[$tax_object->id]['amount'] += $tax;
} else {
$taxes[$tax_object->id] = [
'name' => $tax_object->name,
'amount' => $tax
];
}
}
2017-09-14 22:21:00 +03:00
2017-10-12 18:06:40 +03:00
// Calculate totals
$tax_total += $tax;
$sub_total += $invoice_item['total'];
2017-09-14 22:21:00 +03:00
2017-10-12 18:06:40 +03:00
unset($tax_object);
2017-09-14 22:21:00 +03:00
}
}
2017-10-12 18:32:14 +03:00
$request['amount'] = $sub_total + $tax_total;
2017-09-14 22:21:00 +03:00
$invoice->update($request->input());
2017-10-12 18:06:40 +03:00
// Add invoice totals
$this->addTotals($invoice, $request, $taxes, $sub_total, $tax_total);
// Add invoice history
InvoiceHistory::create([
'company_id' => session('company_id'),
'invoice_id' => $invoice->id,
'status_code' => 'draft',
'notify' => 0,
'description' => trans('messages.success.added', ['type' => $invoice->invoice_number]),
]);
2017-09-14 22:21:00 +03:00
2017-10-31 22:41:06 +03:00
// Update next invoice number
2017-11-26 15:20:17 +03:00
$this->increaseNextInvoiceNumber();
2017-10-31 22:41:06 +03:00
2017-09-14 22:21:00 +03:00
// Fire the event to make it extendible
event(new InvoiceCreated($invoice));
$message = trans('messages.success.added', ['type' => trans_choice('general.invoices', 1)]);
flash($message)->success();
return redirect('incomes/invoices/' . $invoice->id);
}
2017-11-26 15:20:17 +03:00
/**
* Duplicate the specified resource.
*
* @param Invoice $invoice
*
* @return Response
*/
public function duplicate(Invoice $invoice)
{
$clone = $invoice->duplicate();
// Add invoice history
InvoiceHistory::create([
'company_id' => session('company_id'),
'invoice_id' => $clone->id,
'status_code' => 'draft',
'notify' => 0,
'description' => trans('messages.success.added', ['type' => $clone->invoice_number]),
]);
2017-11-26 15:20:17 +03:00
// Update next invoice number
$this->increaseNextInvoiceNumber();
$message = trans('messages.success.duplicated', ['type' => trans_choice('general.invoices', 1)]);
flash($message)->success();
return redirect('incomes/invoices/' . $clone->id . '/edit');
}
2017-11-30 11:47:56 +03:00
/**
* Import the specified resource.
*
* @param ImportFile $import
*
* @return Response
*/
public function import(ImportFile $import)
{
$rows = $import->all();
foreach ($rows as $row) {
$data = $row->toArray();
$data['company_id'] = session('company_id');
Invoice::create($data);
}
$message = trans('messages.success.imported', ['type' => trans_choice('general.invoices', 2)]);
flash($message)->success();
return redirect('incomes/invoices');
}
2017-09-14 22:21:00 +03:00
/**
* Show the form for editing the specified resource.
*
* @param Invoice $invoice
*
* @return Response
*/
public function edit(Invoice $invoice)
{
$customers = Customer::enabled()->pluck('name', 'id');
$currencies = Currency::enabled()->pluck('name', 'code');
$items = Item::enabled()->pluck('name', 'id');
$taxes = Tax::enabled()->pluck('name', 'id');
return view('incomes.invoices.edit', compact('invoice', 'customers', 'currencies', 'items', 'taxes'));
}
/**
* Update the specified resource in storage.
*
* @param Invoice $invoice
* @param Request $request
*
* @return Response
*/
public function update(Invoice $invoice, Request $request)
{
// Get customer object
$customer = Customer::findOrFail($request['customer_id']);
$request['customer_name'] = $customer->name;
$request['customer_email'] = $customer->email;
$request['customer_tax_number'] = $customer->tax_number;
$request['customer_phone'] = $customer->phone;
$request['customer_address'] = $customer->address;
// Get currency object
$currency = Currency::where('code', $request['currency_code'])->first();
$request['currency_code'] = $currency->code;
$request['currency_rate'] = $currency->rate;
// Upload attachment
$attachment_path = $this->getUploadedFilePath($request->file('attachment'), 'invoices');
2017-09-14 22:21:00 +03:00
if ($attachment_path) {
$request['attachment'] = $attachment_path;
}
$taxes = [];
$tax_total = 0;
$sub_total = 0;
$invoice_item = [];
2017-09-14 22:21:00 +03:00
$invoice_item['company_id'] = $request['company_id'];
$invoice_item['invoice_id'] = $invoice->id;
if ($request['item']) {
InvoiceItem::where('invoice_id', $invoice->id)->delete();
foreach ($request['item'] as $item) {
unset($tax_object);
2017-09-14 22:21:00 +03:00
$item_sku = '';
if (!empty($item['item_id'])) {
2017-10-07 19:37:58 +03:00
$item_object = Item::find($item['item_id']);
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
$item_sku = $item_object->sku;
2017-09-14 22:21:00 +03:00
}
2017-10-07 19:37:58 +03:00
$tax = $tax_id = 0;
if (!empty($item['tax_id'])) {
$tax_object = Tax::find($item['tax_id']);
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
$tax_id = $item['tax_id'];
2017-09-14 22:21:00 +03:00
2017-10-07 19:37:58 +03:00
$tax = (($item['price'] * $item['quantity']) / 100) * $tax_object->rate;
2017-09-14 22:21:00 +03:00
}
$invoice_item['item_id'] = $item['item_id'];
$invoice_item['name'] = $item['name'];
$invoice_item['sku'] = $item_sku;
$invoice_item['quantity'] = $item['quantity'];
$invoice_item['price'] = $item['price'];
2017-10-07 19:37:58 +03:00
$invoice_item['tax'] = $tax;
2017-09-14 22:21:00 +03:00
$invoice_item['tax_id'] = $tax_id;
$invoice_item['total'] = $item['price'] * $item['quantity'];
if (isset($tax_object)) {
if (array_key_exists($tax_object->id, $taxes)) {
$taxes[$tax_object->id]['amount'] += $tax;
} else {
$taxes[$tax_object->id] = [
'name' => $tax_object->name,
'amount' => $tax
];
}
}
2017-09-14 22:21:00 +03:00
$tax_total += $tax;
$sub_total += $invoice_item['total'];
2017-09-14 22:21:00 +03:00
InvoiceItem::create($invoice_item);
}
}
2017-10-12 18:32:14 +03:00
$request['amount'] = $sub_total + $tax_total;
2017-09-14 22:21:00 +03:00
$invoice->update($request->input());
2017-10-12 18:06:40 +03:00
// Delete previous invoice totals
InvoiceTotal::where('invoice_id', $invoice->id)->delete();
2017-10-12 18:06:40 +03:00
// Add invoice totals
$this->addTotals($invoice, $request, $taxes, $sub_total, $tax_total);
2017-09-14 22:21:00 +03:00
// Fire the event to make it extendible
event(new InvoiceUpdated($invoice));
$message = trans('messages.success.updated', ['type' => trans_choice('general.invoices', 1)]);
flash($message)->success();
return redirect('incomes/invoices/' . $invoice->id);
}
/**
* Remove the specified resource from storage.
*
* @param Invoice $invoice
*
* @return Response
*/
public function destroy(Invoice $invoice)
{
$invoice->delete();
/*
$invoice->items->delete();
$invoice->payments->delete();
$invoice->histories->delete();
*/
InvoiceItem::where('invoice_id', $invoice->id)->delete();
InvoiceTotal::where('invoice_id', $invoice->id)->delete();
2017-09-14 22:21:00 +03:00
InvoicePayment::where('invoice_id', $invoice->id)->delete();
InvoiceHistory::where('invoice_id', $invoice->id)->delete();
$message = trans('messages.success.deleted', ['type' => trans_choice('general.invoices', 1)]);
flash($message)->success();
return redirect('incomes/invoices');
}
2017-11-07 05:11:03 +03:00
/**
* Mark the invoice as sent.
*
2017-11-08 17:22:04 +03:00
* @param Invoice $invoice
2017-11-07 05:11:03 +03:00
*
* @return Response
*/
2017-11-08 17:22:04 +03:00
public function markSent(Invoice $invoice)
2017-11-07 05:11:03 +03:00
{
$invoice->invoice_status_code = 'sent';
$invoice->save();
flash(trans('invoices.messages.marked_sent'))->success();
return redirect()->back();
}
/**
2017-11-16 20:27:30 +03:00
* Download the PDF file of invoice.
2017-11-07 05:11:03 +03:00
*
2017-11-08 17:22:04 +03:00
* @param Invoice $invoice
2017-11-07 05:11:03 +03:00
*
* @return Response
*/
2017-11-16 20:27:30 +03:00
public function emailInvoice(Invoice $invoice)
2017-11-07 05:11:03 +03:00
{
2017-11-16 20:27:30 +03:00
$invoice = $this->prepareInvoice($invoice);
2017-11-08 17:22:04 +03:00
2017-11-16 20:27:30 +03:00
$html = view($invoice->template_path, compact('invoice'))->render();
2017-11-07 05:11:03 +03:00
2017-11-16 20:27:30 +03:00
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($html);
2017-11-07 05:11:03 +03:00
2017-11-16 20:27:30 +03:00
$file = storage_path('app/temp/invoice_'.time().'.pdf');
2017-11-07 05:11:03 +03:00
2017-11-16 20:27:30 +03:00
$invoice->pdf_path = $file;
2017-11-07 05:11:03 +03:00
2017-11-16 20:27:30 +03:00
// Save the PDF file into temp folder
$pdf->save($file);
// Notify the customer
$invoice->customer->notify(new Notification($invoice));
// Delete temp file
File::delete($file);
unset($invoice->paid);
unset($invoice->template_path);
unset($invoice->pdf_path);
// Mark invoice as sent
$invoice->invoice_status_code = 'sent';
$invoice->save();
flash(trans('invoices.messages.email_sent'))->success();
return redirect()->back();
}
/**
* Print the invoice.
*
* @param Invoice $invoice
*
* @return Response
*/
public function printInvoice(Invoice $invoice)
{
$invoice = $this->prepareInvoice($invoice);
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
return view($invoice->template_path, compact('invoice'));
2017-11-07 05:11:03 +03:00
}
/**
2017-11-15 21:53:40 +03:00
* Download the PDF file of invoice.
2017-11-07 05:11:03 +03:00
*
2017-11-08 17:22:04 +03:00
* @param Invoice $invoice
2017-11-07 05:11:03 +03:00
*
* @return Response
*/
2017-11-15 21:53:40 +03:00
public function pdfInvoice(Invoice $invoice)
2017-11-07 05:11:03 +03:00
{
2017-11-16 20:27:30 +03:00
$invoice = $this->prepareInvoice($invoice);
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
$html = view($invoice->template_path, compact('invoice'))->render();
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($html);
2017-11-16 20:27:30 +03:00
//$pdf->setPaper('A4', 'portrait');
2017-11-15 21:53:40 +03:00
$file_name = 'invoice_'.time().'.pdf';
return $pdf->download($file_name);
2017-11-07 05:11:03 +03:00
}
/**
2017-11-15 21:53:40 +03:00
* Mark the invoice as paid.
2017-11-07 05:11:03 +03:00
*
2017-11-08 17:22:04 +03:00
* @param Invoice $invoice
2017-11-07 05:11:03 +03:00
*
* @return Response
*/
2017-11-15 21:53:40 +03:00
public function markPaid(Invoice $invoice)
2017-11-07 05:11:03 +03:00
{
$paid = 0;
foreach ($invoice->payments as $item) {
$item->default_currency_code = $invoice->currency_code;
$paid += $item->getDynamicConvertedAmount();
}
2017-11-15 21:53:40 +03:00
$amount = $invoice->amount - $paid;
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
$request = new PaymentRequest();
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
$request['company_id'] = $invoice->company_id;
$request['invoice_id'] = $invoice->id;
$request['account_id'] = setting('general.default_account');
2017-12-05 15:32:38 +03:00
$request['payment_method'] = setting('general.default_payment_method', 'offlinepayment.cash.1');
2017-11-15 21:53:40 +03:00
$request['currency_code'] = $invoice->currency_code;
$request['amount'] = $amount;
$request['paid_at'] = Date::now();
$request['_token'] = csrf_token();
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
$this->payment($request);
2017-11-07 05:11:03 +03:00
2017-11-15 21:53:40 +03:00
return redirect()->back();
2017-11-07 05:11:03 +03:00
}
/**
* Add payment to the invoice.
*
* @param PaymentRequest $request
*
* @return Response
*/
public function payment(PaymentRequest $request)
{
// Get currency object
$currency = Currency::where('code', $request['currency_code'])->first();
$request['currency_code'] = $currency->code;
$request['currency_rate'] = $currency->rate;
// Upload attachment
$attachment_path = $this->getUploadedFilePath($request->file('attachment'), 'invoices');
if ($attachment_path) {
$request['attachment'] = $attachment_path;
}
$invoice = Invoice::find($request['invoice_id']);
$total_amount = $invoice->amount;
$amount = (double) $request['amount'];
if ($request['currency_code'] != $invoice->currency_code) {
2017-11-07 05:11:03 +03:00
$request_invoice = new Invoice();
$request_invoice->amount = (float) $request['amount'];
$request_invoice->currency_code = $currency->code;
$request_invoice->currency_rate = $currency->rate;
$amount = $request_invoice->getConvertedAmount();
}
2017-11-07 05:11:03 +03:00
if ($invoice->payments()->count()) {
$total_amount -= $invoice->payments()->paid();
}
2017-11-07 05:11:03 +03:00
if ($amount > $total_amount) {
$message = trans('messages.error.payment_add');
return response()->json([
'success' => false,
'error' => true,
'message' => $message,
]);
} elseif ($amount == $total_amount) {
$invoice->invoice_status_code = 'paid';
} else {
$invoice->invoice_status_code = 'partial';
2017-11-07 05:11:03 +03:00
}
$invoice->save();
$invoice_payment = InvoicePayment::create($request->input());
$request['status_code'] = $invoice->invoice_status_code;
$request['notify'] = 0;
$desc_date = Date::parse($request['paid_at'])->format($this->getCompanyDateFormat());
$desc_amount = money((float) $request['amount'], $request['currency_code'], true)->format();
2017-11-07 05:11:03 +03:00
$request['description'] = $desc_date . ' ' . $desc_amount;
InvoiceHistory::create($request->input());
$message = trans('messages.success.added', ['type' => trans_choice('general.revenues', 1)]);
return response()->json([
'success' => true,
'error' => false,
'message' => $message,
]);
2017-11-07 05:11:03 +03:00
}
2017-09-14 22:21:00 +03:00
/**
* Remove the specified resource from storage.
*
* @param InvoicePayment $payment
*
* @return Response
*/
public function paymentDestroy(InvoicePayment $payment)
{
$invoice = Invoice::find($payment->invoice_id);
if ($invoice->payments()->count() > 1) {
$invoice->invoice_status_code = 'partial';
} else {
$invoice->invoice_status_code = 'draft';
}
$invoice->save();
2017-09-14 22:21:00 +03:00
$payment->delete();
$message = trans('messages.success.deleted', ['type' => trans_choice('general.invoices', 1)]);
flash($message)->success();
return redirect()->back();
2017-09-14 22:21:00 +03:00
}
2017-10-12 18:06:40 +03:00
2017-11-16 20:27:30 +03:00
protected function prepareInvoice(Invoice $invoice)
{
$paid = 0;
foreach ($invoice->payments as $item) {
$item->default_currency_code = $invoice->currency_code;
$paid += $item->getDynamicConvertedAmount();
}
$invoice->paid = $paid;
$invoice->template_path = 'incomes.invoices.invoice';
event(new InvoicePrinting($invoice));
return $invoice;
}
2017-10-12 18:06:40 +03:00
protected function addTotals($invoice, $request, $taxes, $sub_total, $tax_total)
{
$sort_order = 1;
// Added invoice total sub total
InvoiceTotal::create([
2017-10-12 18:06:40 +03:00
'company_id' => $request['company_id'],
'invoice_id' => $invoice->id,
'code' => 'sub_total',
'name' => 'invoices.sub_total',
'amount' => $sub_total,
'sort_order' => $sort_order,
]);
2017-10-12 18:06:40 +03:00
$sort_order++;
// Added invoice total taxes
if ($taxes) {
foreach ($taxes as $tax) {
InvoiceTotal::create([
2017-10-12 18:06:40 +03:00
'company_id' => $request['company_id'],
'invoice_id' => $invoice->id,
'code' => 'tax',
'name' => $tax['name'],
'amount' => $tax['amount'],
'sort_order' => $sort_order,
]);
2017-10-12 18:06:40 +03:00
$sort_order++;
}
}
// Added invoice total total
InvoiceTotal::create([
2017-10-12 18:06:40 +03:00
'company_id' => $request['company_id'],
'invoice_id' => $invoice->id,
'code' => 'total',
'name' => 'invoices.total',
'amount' => $sub_total + $tax_total,
'sort_order' => $sort_order,
]);
2017-10-12 18:06:40 +03:00
}
2017-09-14 22:21:00 +03:00
}