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.

54 lines
2.0 KiB

  1. @extends('hopadditions')
  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> -> {{ __('Hop 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('hopadditions.create') }}" class="btn btn-primary">Add Hop 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">Beer</th>
  20. <th scope="col">Hop</th>
  21. <th scope="col">Amount</th>
  22. <th scope="col">Timing</th>
  23. @if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif
  24. </tr>
  25. </thead>
  26. <tbody>
  27. @foreach ($hopadditions as $hopaddition)
  28. <tr>
  29. <td><a href="/beer/{{$hopaddition->beer_id}}">{{$hopaddition->beer}}</a> </td>
  30. <td><a href="/hop/{{$hopaddition->hop_id}}">{{$hopaddition->hop}}</a> </td>
  31. <td>{{$hopaddition->amount}} </td>
  32. <td>{{$hopaddition->timing}} </td>
  33. @if (Auth::user()->isAdmin())
  34. <td><a href="{{ route('hopadditions.edit',$hopaddition->id)}}" class="btn btn-primary">Edit</a></td>
  35. <td><form action="{{ route('hopadditions.destroy', $hopaddition->id)}}" method="post">
  36. @csrf
  37. @method('DELETE')
  38. <button class="btn btn-danger" type="submit">Delete</button>
  39. </form></td>
  40. @endif
  41. </tr>
  42. @endforeach
  43. </tbody>
  44. </table>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. @endsection