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.

39 lines
1.1 KiB

3 years ago
  1. @extends('layouts.app')
  2. @section('content')
  3. <div class="container">
  4. <div class="row justify-content-center">
  5. <div class="col-md-8">
  6. <div class="card">
  7. @include('inc.navbar')
  8. <div class="card-header"><a href="/home">Home</a> -> <a href="/adjuncts">Adjunct List</a> -> {{ __('Adjunct Card') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div>
  9. <div class="card-body">
  10. <h2>{{$adjunct->name}}</h2>
  11. <table class="table table-striped table-dark" id="table-programs">
  12. <thead>
  13. <tr>
  14. <th scope="col">Brewery</th>
  15. <th scope="col">Beer</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. @foreach ($adjunctadditions as $adjuncts)
  20. <tr>
  21. <td><a href="/brewery/{{$adjuncts->breweryID}}">{{$adjuncts->brewery}}</a> </td>
  22. <td><a href="/beer/{{$adjuncts->beer_id}}">{{$adjuncts->beer}}</a> </td>
  23. </tr>
  24. @endforeach
  25. </tbody>
  26. </table>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. @endsection