Fixes for namespace
This commit is contained in:
parent
dd176de3b8
commit
d079113871
|
|
@ -14,7 +14,7 @@ return new class extends Migration
|
||||||
|
|
||||||
\Illuminate\Support\Facades\Artisan::call('ninja:design-update');
|
\Illuminate\Support\Facades\Artisan::call('ninja:design-update');
|
||||||
|
|
||||||
$currency = Currency::where('code', 'ZWL')->first();
|
$currency = \App\Models\Currency::where('code', 'ZWL')->first();
|
||||||
|
|
||||||
if($currency){
|
if($currency){
|
||||||
$currency->update(['name' => 'Zimbabwe Gold']);
|
$currency->update(['name' => 'Zimbabwe Gold']);
|
||||||
|
|
|
||||||
|
|
@ -1096,8 +1096,8 @@ $lang = array(
|
||||||
'quote_documents' => 'Quote Documents',
|
'quote_documents' => 'Quote Documents',
|
||||||
'invoice_documents' => 'Invoice Documents',
|
'invoice_documents' => 'Invoice Documents',
|
||||||
'expense_documents' => 'Expense Documents',
|
'expense_documents' => 'Expense Documents',
|
||||||
'invoice_embed_documents' => 'Embed Documents',
|
'invoice_embed_documents' => 'Embed Images/Documents',
|
||||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
'invoice_embed_documents_help' => 'Include attached images/pdfs in the invoice.',
|
||||||
'document_email_attachment' => 'Attach Documents',
|
'document_email_attachment' => 'Attach Documents',
|
||||||
'ubl_email_attachment' => 'Attach UBL',
|
'ubl_email_attachment' => 'Attach UBL',
|
||||||
'download_documents' => 'Download Documents (:size)',
|
'download_documents' => 'Download Documents (:size)',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue