Files
construprogress/resources/views/projects/templates.blade.php
T

24 lines
920 B
PHP
Raw Normal View History

2026-05-07 23:31:33 +02:00
<x-app-layout>
<x-slot name="header">
<div class="flex items-center gap-3">
<a href="{{ route('projects.dashboard', $project) }}" wire:navigate class="btn btn-ghost btn-sm px-2">
<x-heroicon-o-arrow-left class="w-4 h-4" />
</a>
<div>
<h2 class="font-semibold text-xl text-gray-800 leading-tight">{{ __('Inspection templates') }}</h2>
<p class="text-sm text-gray-500 leading-tight">{{ $project->name }}</p>
</div>
</div>
</x-slot>
<div class="py-8">
<div class="max-w-5xl mx-auto sm:px-6 lg:px-8">
<p class="text-sm text-base-content/60 mb-4">
{{ __('Create generic templates that can be used in any phase of the project') }}
</p>
<livewire:inspections.template-manager :project="$project" />
</div>
</div>
</x-app-layout>