11 lines
393 B
PHP
11 lines
393 B
PHP
<x-layouts.app>
|
|
<flux:main>
|
|
<div class="mb-6">
|
|
<flux:button variant="ghost" icon="arrow-left" href="{{ route('admin.companies.index') }}" wire:navigate>
|
|
{{ __('Zurück zur Übersicht') }}
|
|
</flux:button>
|
|
</div>
|
|
|
|
@livewire('admin.companies.show', ['companyId' => request()->route('company')])
|
|
</flux:main>
|
|
</x-layouts.app>
|