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.

53 lines
1.9 KiB

  1. @extends('fermentations')
  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> -> {{ __('Fermentation Instructions') }}<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('fermentations.create') }}" class="btn btn-primary">Add Fermentation Step</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">Yeast</th>
  20. <th scope="col">Beer</th>
  21. <th scope="col">Temperature</th>
  22. <th scope="col">Duration</th>
  23. <th scope="col">Alternative</th>
  24. @if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif
  25. <tbody>
  26. @foreach ($fermentations as $fermentation)
  27. <tr>
  28. <td><a href="/yeast/{{$fermentation->yeast_id}}">{{$fermentation->name}}</a> </td>
  29. <td><a href="/beer/{{$fermentation->beer_id}}">{{$fermentation->beer}}</a> </td>
  30. <td>{{$fermentation->temperature}} </td>
  31. <td>{{$fermentation->duration}} </td>
  32. <td>{{$fermentation->alternative}} </td>
  33. @if (Auth::user()->isAdmin())
  34. <td><a href="{{ route('fermentations.edit',$fermentation->id)}}" class="btn btn-primary">Edit</a></td>
  35. <td><form action="{{ route('fermentations.destroy', $fermentation->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