2026-05-09 22:28:20 +02:00
|
|
|
<x-app-layout>
|
|
|
|
|
<x-slot name="header">
|
|
|
|
|
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
2026-06-16 18:05:53 +02:00
|
|
|
{{ __('Project files') }}: {{ $project->name }}
|
2026-05-09 22:28:20 +02:00
|
|
|
</h2>
|
|
|
|
|
</x-slot>
|
|
|
|
|
|
|
|
|
|
<div class="py-12">
|
|
|
|
|
<div class="max-w-4xl mx-auto sm:px-6 lg:px-8">
|
|
|
|
|
<div class="mb-4">
|
2026-06-16 18:05:53 +02:00
|
|
|
<a href="{{ route('projects.map', $project) }}" class="btn btn-outline btn-sm">← {{ __('Back to map') }}</a>
|
2026-05-09 22:28:20 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@livewire('media-manager', [
|
|
|
|
|
'mediableType' => 'App\Models\Project',
|
|
|
|
|
'mediableId' => $project->id,
|
|
|
|
|
])
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</x-app-layout>
|