@extends('tenant.layouts.master') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.home') => '/', __('breadcrumb.accounting') => '/accounting/accounts', __('breadcrumb.exchange') => route('tenant.accounting.exchanges.index'), __('breadcrumb.exchange_bond') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'accounting.actions.exchanges']) @endsection @section('content')
@php $decodedData = json_decode($data, true); $enable_cost_centers_on_module = checkIfModuleIsActiveForCostCenters('exchanges'); $data = array_merge($decodedData, ['enable_cost_centers_on_module' => $enable_cost_centers_on_module]); @endphp
@endsection @push('script') @scriptag('build/js/vue-components/update-exchange.js') @endpush