AUK ready
This commit is contained in:
64
resources/views/auks/list.blade.php
Normal file
64
resources/views/auks/list.blade.php
Normal file
@@ -0,0 +1,64 @@
|
||||
<x-app-layout>
|
||||
<x-slot name="header">
|
||||
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
||||
{{ $project->name }}: {{ __('AUK list') }}
|
||||
</h2>
|
||||
</x-slot>
|
||||
|
||||
<div class="py-12">
|
||||
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
|
||||
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
|
||||
<div class="p-6 bg-white border-b border-gray-200">
|
||||
<a href="{{ route('auks.create') }}">
|
||||
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">
|
||||
<i class="fa fa-add pr-2"></i>{{ __('Create AUK') }}
|
||||
</button>
|
||||
</a>
|
||||
|
||||
<div align="center" class="pt-4">
|
||||
<table class="table table-sm border-b border-gray-200">
|
||||
<tr class="border border-gray-200">
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('Title') }}
|
||||
</th>
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('Number') }}
|
||||
</th>
|
||||
<th class="p-2 border border-gray-200">
|
||||
{{ __('Actions') }}
|
||||
</th>
|
||||
</tr>
|
||||
@forelse ($top_auks as $top_auk)
|
||||
<tr class="border border-gray-200">
|
||||
<td class="p-2 border border-gray-200">{{ $top_auk->name }}</td>
|
||||
<td class="p-2 border border-gray-200">{{ $top_auk->number }}</td>
|
||||
<td class="p-2 border border-gray-200">
|
||||
<div class="text-center">
|
||||
@include('auks.actions', ['auk' => $top_auk])
|
||||
</div>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
@if (count($top_auk->childs))
|
||||
@php
|
||||
$level = 1;
|
||||
@endphp
|
||||
@include('auks.tableChild', [
|
||||
'childs' => $top_auk->childs,
|
||||
'level' => $level,
|
||||
])
|
||||
@endif
|
||||
|
||||
|
||||
@empty
|
||||
<tr>
|
||||
<td colspan="3" class="p-2 border border-gray-200 text-center">No AUKs!</td>
|
||||
</tr>
|
||||
@endforelse
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
Reference in New Issue
Block a user