My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.0 KiB

  1. @extends('adjunctadditions')
  2. @section('main')
  3. <div class="container">
  4. <div class="row justify-content-center">
  5. <div class="col-md-12">
  6. <div class="card">
  7. @include('inc.navbar')
  8. <div class="card-header"><a href="/home">Home</a> -> {{ __('Adjunct Additions') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div>
  9. <div class="card-body">
  10. @if (Auth::user()->isAdmin())
  11. <a href="{{ route('adjunctadditions.create') }}" class="btn btn-primary">Add Adjunct Addition</a>
  12. <hr />
  13. @endif
  14. <table class="table table-striped table-dark" id="table-programs">
  15. <!-- This piece of code is for error messages display purposes -->
  16. @include('inc.messages')
  17. <thead>
  18. <tr>
  19. <th scope="col">Adjunct</th>
  20. <th scope="col">Beer</th>
  21. <th scope="col">Amount</th>
  22. <th scope="col">Timing</th>
  23. <th scope="col">Alternative</th>
  24. <th scope="col">Notes</th>
  25. @if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif
  26. <tbody>
  27. @foreach ($adjunctadditions as $adjunctaddition)
  28. <tr>
  29. <td><a href="/adjunct/{{$adjunctaddition->adjunct_id}}">{{$adjunctaddition->name}}</a> </td>
  30. <td><a href="/beer/{{$adjunctaddition->beer_id}}">{{$adjunctaddition->beer}}</a> </td>
  31. <td>{{$adjunctaddition->amount}} </td>
  32. <td>{{$adjunctaddition->timing}} </td>
  33. <td><a href="/adjunct/{{$adjunctaddition->alternative}}">{{$adjunctaddition->alternativename}}</a> </td>
  34. <td>{{$adjunctaddition->notes}} </td>
  35. @if (Auth::user()->isAdmin())
  36. <td><a href="{{ route('adjunctadditions.edit',$adjunctaddition->id)}}" class="btn btn-primary">Edit</a></td>
  37. <td><form action="{{ route('adjunctadditions.destroy', $adjunctaddition->id)}}" method="post">
  38. @csrf
  39. @method('DELETE')
  40. <button class="btn btn-danger" type="submit">Delete</button>
  41. </form></td>
  42. @endif
  43. </tr>
  44. @endforeach
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. @endsection