begin action buttons
This commit is contained in:
1
resources/sass/app.scss
Normal file
1
resources/sass/app.scss
Normal file
@@ -0,0 +1 @@
|
||||
@import "node_modules/font-awesome/scss/font-awesome.scss";
|
||||
@@ -9,7 +9,15 @@
|
||||
<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">
|
||||
<x-label class="mb-4" :errors="$errors" />
|
||||
@if ($errors->any())
|
||||
<div class="alert alert-danger text-red-500 p-2">
|
||||
<ul class="list-unstyled alert alert-danger">
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
<form method="POST" action="{{ route('projects.store') }}">
|
||||
@csrf
|
||||
<!-- Project name -->
|
||||
|
||||
@@ -35,7 +35,11 @@
|
||||
<td class="p-2 border border-gray-200">{{ $project->name }}</td>
|
||||
<td class="p-2 border border-gray-200">{{ $project->description }}</td>
|
||||
<td class="p-2 border border-gray-200">{{ $project->mmc_path }}</td>
|
||||
<td class="p-2 border border-gray-200"> </td>
|
||||
<td class="p-2 border border-gray-200">
|
||||
<!-- <div class="btn-group btn-group-sm float-right" role="group" aria-label="Basic example"> -->
|
||||
<a href='#' class="btn btn-secondary"><i class="fa fa-pencil"></i></a>
|
||||
<!-- </div> -->
|
||||
</td>
|
||||
</tr>
|
||||
@empty
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user