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('layouts.app')
@section('content') <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> -> {{ __('Yeast 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 Yeast </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">Profile</th> </tr> </thead>
<tbody> @foreach ($yeasts as $yeast) <tr> <td><a href="/yeast/{{$yeast->id}}">{{$yeast->name}}</a> </td> <td>{{str_replace(' ,',',',str_replace('"',' ',str_replace(',',', ',str_replace('}', '', str_replace('{','',$yeast->profile)))))}} </td> </tr> @endforeach </tbody> </table> </div> </div> </div> </div> </div> <!-- this code if for the modal --> <div class="modal fade bg-primary text-dark" tabindex="-1" role="dialog" id="addModal"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Add yeast</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close" > <span aria-hidden="true">x</span> </button> </div> <div class="modal-body"> <form class="" action="{{route('yeasts.store')}}" method="post"> {{csrf_field()}} <div class="form-group"> <label for="">Name</label> <input type="text" class="form-control" name="name"> </div> <div class="form-group"> <label for="">Profile</label> <textarea type="text" class="form-control" name="profile" ></textarea> </div> <div class="form-group"> <label for="">Attenuation</label> <input type="text" class="form-control" name="attenuation"> </div> <div class="form-group"> <label for="">Flocculation</label> <input type="text" class="form-control" name="flocculation"> </div> <div class="form-group"> <label for="">Alcohol Tolerance</label> <input type="text" class="form-control" name="tolerance"> </div> <div class="form-group"> <label for="">Temperature Range °C</label> <input type="text" class="form-control" name="temp_range"> </div> <input type="submit" name="submit" value="Submit" class="btn btn-success"> </form> </div> </div> </div> </div>
@endsection
|