@extends('tenant.layouts.master') @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.home') => '/', __('breadcrumb.accounting') => '/accounting/accounts', __('breadcrumb.entries') => route('tenant.accounting.entries.index'), __('breadcrumb.add_new_entry') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'accounting.actions.entries']) @endsection @section('style') @endsection @section('content')
@php $decodedData = json_decode($data, true); $enable_cost_centers_on_module = checkIfModuleIsActiveForCostCenters('entries'); $data = array_merge($decodedData, ['enable_cost_centers_on_module' => $enable_cost_centers_on_module]); @endphp {{-- Create Entry Form --}}
@endsection @push('script') @scriptag('build/js/vue-components/create-entry.js') @endpush