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
						
					
					
						
							1.8 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							55 lines
						
					
					
						
							1.8 KiB
						
					
					
				| @extends('beers') | |
| 
 | |
| @section('main') | |
| <div class="container"> | |
|     <div class="row justify-content-center"> | |
|         <div class="col-md-8"> | |
|             <div class="card"> | |
| @include('inc.navbar') | |
|                 <div class="card-header"><a href="/home">Home</a> -> {{ __('Beer List') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div> | |
| 
 | |
|                 <div class="card-body"> | |
| @if (Auth::user()->isAdmin()) | |
|           <button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#addModal" type="button" name="button" > | |
|             Add Beer | |
|           </button> | |
|           <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">Name</th> | |
| 		<th scope="col">Brewery</th> | |
| 		<th scope="col">Style</th> | |
|     @if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif | |
|               </tr> | |
|             </thead> | |
| 
 | |
|             <tbody> | |
| 	    @foreach ($beers as $beer) | |
|               <tr> | |
|                 <td><a href="/beer/{{$beer->beer_id}}">{{$beer->name}}</a> </td> | |
| 		<td><a href="/brewery/{{$beer->brewery_id}}">{{$beer->brewery}}</a> </td> | |
| 		<td>{{$beer->type}} </td> | |
|     @if (Auth::user()->isAdmin()) | |
| <td><a href="{{ route('beers.edit',$beer->beer_id)}}" class="btn btn-primary">Edit</a></td> | |
| <td><form action="{{ route('beers.destroy', $beer->beer_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
 |