jk
3 years ago
7 changed files with 198 additions and 71 deletions
-
60app/Http/Controllers/FermentationController.php
-
44resources/views/fermentation/create.blade.php
-
43resources/views/fermentation/edit.blade.php
-
53resources/views/fermentation/index.blade.php
-
62resources/views/fermentations.blade.php
-
4resources/views/hopadditions/create.blade.php
-
3routes/web.php
@ -0,0 +1,44 @@ |
|||
@extends('fermentations') |
|||
|
|||
@section('main') |
|||
<div class="row"> |
|||
<div class="col-sm-12 offset-sm-2"> |
|||
<h1 class="display-3">Add a Grain</h1> |
|||
<div> |
|||
@if ($errors->any()) |
|||
<div class="alert alert-danger"> |
|||
<ul> |
|||
@foreach ($errors->all() as $error) |
|||
<li>{{ $error }}</li> |
|||
@endforeach |
|||
</ul> |
|||
</div><br /> |
|||
@endif |
|||
<form method="post" action="{{ route('fermentations.store') }}"> |
|||
@csrf |
|||
<div class="form-group"> |
|||
<label for="beer_id">Beer ID</label> |
|||
<input type="text" class="form-control" name="beer_id"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="yeast_id">Yeast ID</label> |
|||
<input type="text" class="form-control" name="yeast_id" > |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="temperature">Temperature</label> |
|||
<input type="text" class="form-control" name="temperature"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="duration">Duration</label> |
|||
<textarea type="text" class="form-control" name="duration"></textarea> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="alternative">Alternative (ID)</label> |
|||
<input type="text" class="form-control" name="alternative"> |
|||
</div> |
|||
<button type="submit" class="btn btn-primary">Add Grain</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endsection |
@ -0,0 +1,43 @@ |
|||
@extends('fermentations') |
|||
@section('main') <div class="row"> |
|||
<div class="col-sm-12 offset-sm-2"> |
|||
<h1 class="display-3">Update Fermentation Step</h1> |
|||
|
|||
@if ($errors->any()) |
|||
<div class="alert alert-danger"> |
|||
<ul> |
|||
@foreach ($errors->all() as $error) |
|||
<li>{{ $error }}</li> |
|||
@endforeach |
|||
</ul> |
|||
</div> |
|||
<br /> |
|||
@endif |
|||
<form method="post" action="{{ route('fermentations.update', $fermentation->id) }}"> |
|||
@method('PATCH') |
|||
@csrf |
|||
<div class="form-group"> |
|||
<label for="beer_id">Beer ID</label> |
|||
<input type="text" class="form-control" name="beer_id" value="{{@fermentation->beer_id}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="yeast_id">Yeast ID</label> |
|||
<input type="text" class="form-control" name="yeast_id" value="{{@fermentation->yeast_id}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="temperature">Temperature</label> |
|||
<input type="text" class="form-control" name="temperature" value="{{@fermentation->temperature}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="duration">Duration</label> |
|||
<textarea type="text" class="form-control" name="duration">{{@fermentation->duration}}</textarea> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="alternative">Alternative (ID)</label> |
|||
<input type="text" class="form-control" name="alternative" value="{{@fermentation->alternative}}" /> |
|||
</div> |
|||
<button type="submit" class="btn btn-primary">Update</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
@endsection |
@ -0,0 +1,53 @@ |
|||
@extends('fermentations') |
|||
|
|||
@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> -> {{ __('Fermentation Instructions') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div> |
|||
|
|||
<div class="card-body"> |
|||
@if (Auth::user()->isAdmin()) |
|||
<a href="{{ route('fermentations.create') }}" class="btn btn-primary">Add Fermentation Step</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">Yeast</th> |
|||
<th scope="col">Beer</th> |
|||
<th scope="col">Temperature</th> |
|||
<th scope="col">Duration</th> |
|||
<th scope="col">Alternative</th> |
|||
@if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif |
|||
<tbody> |
|||
@foreach ($fermentations as $fermentation) |
|||
<tr> |
|||
<td><a href="/yeast/{{$fermentation->yeast_id}}">{{$fermentation->name}}</a> </td> |
|||
<td><a href="/beer/{{$fermentation->beer_id}}">{{$fermentation->beer}}</a> </td> |
|||
<td>{{$fermentation->temperature}} </td> |
|||
<td>{{$fermentation->duration}} </td> |
|||
<td>{{$fermentation->alternative}} </td> |
|||
@if (Auth::user()->isAdmin()) |
|||
<td><a href="{{ route('fermentations.edit',$fermentation->id)}}" class="btn btn-primary">Edit</a></td> |
|||
<td><form action="{{ route('fermentations.destroy', $fermentation->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 |
@ -1,66 +1,8 @@ |
|||
@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> -> {{ __('Fermentation Instructions') }}<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 Fermentation Step |
|||
</button> |
|||
<hr/> |
|||
@endif |
|||
<!-- This piece of code is for error messages display purposes --> |
|||
@include('inc.messages') |
|||
</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 Fermentation</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('fermentations.store')}}" method="post"> |
|||
{{csrf_field()}} |
|||
<div class="form-group"> |
|||
<label for="">Beer ID</label> |
|||
<input type="text" class="form-control" name="beer_id"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Yeast ID</label> |
|||
<input type="text" class="form-control" name="yeast_id" > |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Temperature</label> |
|||
<input type="text" class="form-control" name="temperature"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Duration</label> |
|||
<textarea type="text" class="form-control" name="duration"></textarea> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Alternative (ID)</label> |
|||
<input type="text" class="form-control" name="alternative"> |
|||
</div> |
|||
<input type="submit" name="submit" value="Submit" class="btn btn-success"> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container"> |
|||
@yield('main') |
|||
</div> |
|||
|
|||
@endsection |
Write
Preview
Loading…
Cancel
Save
Reference in new issue