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.
|
|
@extends('search')
@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> -> {{ __('Search Results') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div>
<div class="card-body"> <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">@sortablelink('name')</th> <th scope="col">@sortablelink('brewery'</th> <th scope="col" class="hideable">@sortablelink('type', 'Style')</th> </tr> </thead>
<tbody> @foreach ($results as $result) <tr> <td><a href="/beer/{{$result->beer_id}}">{{$result->name}}</a> </td> <td><a href="/brewery/{{$result->brewery_id}}">{{$result->brewery}}</a> </td> <td class="hideable">{{$result->type}} </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div>
@endsection
|