@extends('tenant.layouts.master') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.home') => '/', __('breadcrumb.accounting') => '/accounting/accounts', __('breadcrumb.credit_notes') => route('tenant.accounting.creditNotes.index'), __('breadcrumb.add_credit_note') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'accounting.notes.credit']) @endsection @section('content')
@php $enable_cost_centers_on_module = checkIfModuleIsActiveForCostCenters('creditNotes'); $data = array_merge($data, ['enable_cost_centers_on_module' => $enable_cost_centers_on_module]); @endphp
@endsection @push('script') @scriptag('build/js/vue-components/update-credit-note.js') @endpush