Documents create begin

This commit is contained in:
Александр Бабкин
2022-07-01 16:41:22 +03:00
parent 0b666ae79a
commit 17b364b1e3
5 changed files with 60 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Project list') }}
{{ $project->name }}: {{ __('Document list') }}
</h2>
</x-slot>
@@ -9,13 +9,13 @@
<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('projects.create')}}">
<a href="{{ route('documents.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 project')}}
<i class="fa fa-add pr-2"></i>{{__('Create doucment')}}
</button>
</a>
<div align="center" class="pt-4">
{{-- <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">
@@ -60,7 +60,7 @@
</tr>
@endforelse
</table>
</div>
</div> --}}
</div>
</div>
</div>