renamed income/expense
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses;
|
||||
namespace App\Exports\Purchases;
|
||||
|
||||
use App\Exports\Expenses\Sheets\Bills as Base;
|
||||
use App\Exports\Expenses\Sheets\BillItems;
|
||||
use App\Exports\Expenses\Sheets\BillItemTaxes;
|
||||
use App\Exports\Expenses\Sheets\BillHistories;
|
||||
use App\Exports\Expenses\Sheets\BillPayments;
|
||||
use App\Exports\Expenses\Sheets\BillTotals;
|
||||
use App\Exports\Purchases\Sheets\Bills as Base;
|
||||
use App\Exports\Purchases\Sheets\BillItems;
|
||||
use App\Exports\Purchases\Sheets\BillItemTaxes;
|
||||
use App\Exports\Purchases\Sheets\BillHistories;
|
||||
use App\Exports\Purchases\Sheets\BillPayments;
|
||||
use App\Exports\Purchases\Sheets\BillTotals;
|
||||
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
||||
|
||||
class Bills implements WithMultipleSheets
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses;
|
||||
namespace App\Exports\Purchases;
|
||||
|
||||
use App\Models\Banking\Transaction as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Expense\BillHistory as Model;
|
||||
use App\Models\Purchase\BillHistory as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Expense\BillItemTax as Model;
|
||||
use App\Models\Purchase\BillItemTax as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Expense\BillItem as Model;
|
||||
use App\Models\Purchase\BillItem as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Banking\Transaction as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Expense\BillTotal as Model;
|
||||
use App\Models\Purchase\BillTotal as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses\Sheets;
|
||||
namespace App\Exports\Purchases\Sheets;
|
||||
|
||||
use App\Models\Expense\Bill as Model;
|
||||
use App\Models\Purchase\Bill as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Expenses;
|
||||
namespace App\Exports\Purchases;
|
||||
|
||||
use App\Models\Common\Contact as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes;
|
||||
namespace App\Exports\Sales;
|
||||
|
||||
use App\Models\Common\Contact as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes;
|
||||
namespace App\Exports\Sales;
|
||||
|
||||
use App\Exports\Incomes\Sheets\Invoices as Base;
|
||||
use App\Exports\Incomes\Sheets\InvoiceItems;
|
||||
use App\Exports\Incomes\Sheets\InvoiceItemTaxes;
|
||||
use App\Exports\Incomes\Sheets\InvoiceHistories;
|
||||
use App\Exports\Incomes\Sheets\InvoicePayments;
|
||||
use App\Exports\Incomes\Sheets\InvoiceTotals;
|
||||
use App\Exports\Sales\Sheets\Invoices as Base;
|
||||
use App\Exports\Sales\Sheets\InvoiceItems;
|
||||
use App\Exports\Sales\Sheets\InvoiceItemTaxes;
|
||||
use App\Exports\Sales\Sheets\InvoiceHistories;
|
||||
use App\Exports\Sales\Sheets\InvoicePayments;
|
||||
use App\Exports\Sales\Sheets\InvoiceTotals;
|
||||
use Maatwebsite\Excel\Concerns\WithMultipleSheets;
|
||||
|
||||
class Invoices implements WithMultipleSheets
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes;
|
||||
namespace App\Exports\Sales;
|
||||
|
||||
use App\Models\Banking\Transaction as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Income\InvoiceHistory as Model;
|
||||
use App\Models\Sale\InvoiceHistory as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Income\InvoiceItemTax as Model;
|
||||
use App\Models\Sale\InvoiceItemTax as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Income\InvoiceItem as Model;
|
||||
use App\Models\Sale\InvoiceItem as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Banking\Transaction as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Income\InvoiceTotal as Model;
|
||||
use App\Models\Sale\InvoiceTotal as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exports\Incomes\Sheets;
|
||||
namespace App\Exports\Sales\Sheets;
|
||||
|
||||
use App\Models\Income\Invoice as Model;
|
||||
use App\Models\Sale\Invoice as Model;
|
||||
use Maatwebsite\Excel\Concerns\FromCollection;
|
||||
use Maatwebsite\Excel\Concerns\ShouldAutoSize;
|
||||
use Maatwebsite\Excel\Concerns\WithHeadings;
|
||||
Reference in New Issue
Block a user