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
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							55 lines
						
					
					
						
							2.0 KiB
						
					
					
				| @extends('adjunctadditions') | |
| 
 | |
| @section('main') | |
| <div class="container"> | |
|     <div class="row justify-content-center"> | |
|         <div class="col-md-12"> | |
|             <div class="card"> | |
| @include('inc.navbar') | |
|                 <div class="card-header"><a href="/home">Home</a> -> {{ __('Adjunct Additions') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div> | |
| 
 | |
|                 <div class="card-body"> | |
| @if (Auth::user()->isAdmin()) | |
| <a href="{{ route('adjunctadditions.create') }}" class="btn btn-primary">Add Adjunct Addition</a> | |
| <hr /> | |
| @endif | |
| <table class="table table-striped table-dark" id="table-programs"> | |
|   <!-- This piece of code is for error messages display purposes --> | |
|   @include('inc.messages') | |
|   <thead> | |
|     <tr> | |
|       <th scope="col">Adjunct</th> | |
|       <th scope="col">Beer</th> | |
|       <th scope="col">Amount</th> | |
|       <th scope="col">Timing</th> | |
|       <th scope="col">Alternative</th> | |
|       <th scope="col">Notes</th> | |
|       @if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif | |
|   <tbody> | |
|   @foreach ($adjunctadditions as $adjunctaddition) | |
|     <tr> | |
|       <td><a href="/adjunct/{{$adjunctaddition->adjunct_id}}">{{$adjunctaddition->name}}</a> </td> | |
|       <td><a href="/beer/{{$adjunctaddition->beer_id}}">{{$adjunctaddition->beer}}</a> </td> | |
|       <td>{{$adjunctaddition->amount}} </td> | |
|       <td>{{$adjunctaddition->timing}} </td> | |
|       <td><a href="/adjunct/{{$adjunctaddition->alternative}}">{{$adjunctaddition->alternativename}}</a> </td> | |
|       <td>{{$adjunctaddition->notes}} </td> | |
|       @if (Auth::user()->isAdmin()) | |
|         <td><a href="{{ route('adjunctadditions.edit',$adjunctaddition->id)}}" class="btn btn-primary">Edit</a></td> | |
|         <td><form action="{{ route('adjunctadditions.destroy', $adjunctaddition->id)}}" method="post"> | |
|           @csrf | |
|           @method('DELETE') | |
|           <button class="btn btn-danger" type="submit">Delete</button> | |
|         </form></td> | |
|       @endif | |
|     </tr> | |
|   @endforeach | |
|   </tbody> | |
| </table> | |
|                 </div> | |
|             </div> | |
|         </div> | |
|     </div> | |
| </div> | |
| 
 | |
| @endsection
 |