jk
3 years ago
6 changed files with 199 additions and 79 deletions
-
72app/Http/Controllers/MasheController.php
-
63resources/views/mashes.blade.php
-
44resources/views/mashes/create.blade.php
-
43resources/views/mashes/edit.blade.php
-
53resources/views/mashes/index.blade.php
-
3routes/web.php
@ -1,67 +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> -> {{ __('Mash Steps') }}<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 Mash 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 Grain</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('mash.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="">Temperature</label> |
|||
<input type="text" class="form-control" name="temp" > |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Duration</label> |
|||
<input type="text" class="form-control" name="duration"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Stage</label> |
|||
<input type="text" class="form-control" name="stage"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="">Length of Boil</label> |
|||
<input type="text" class="form-control" name="boil"> |
|||
</div> |
|||
<input type="submit" name="submit" value="Submit" class="btn btn-success"> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<div class="container"> |
|||
@yield('main') |
|||
</div> |
|||
|
|||
|
|||
@endsection |
@ -0,0 +1,44 @@ |
|||
@extends('mashes') |
|||
|
|||
@section('main') |
|||
<div class="row"> |
|||
<div class="col-sm-8 offset-sm-2"> |
|||
<h1 class="display-3">Add a Mash Step</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('mashes.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="temperature">Temperature</label> |
|||
<input type="text" class="form-control" name="temperature" > |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="duration">Duration</label> |
|||
<input type="text" class="form-control" name="duration"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="stage">Stage</label> |
|||
<input type="text" class="form-control" name="stage"> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="boil">Length of Boil</label> |
|||
<input type="text" class="form-control" name="boil"> |
|||
</div> |
|||
<button type="submit" class="btn btn-primary">Add Mash Step</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
@endsection |
@ -0,0 +1,43 @@ |
|||
@extends('mashes') |
|||
@section('main') <div class="row"> |
|||
<div class="col-sm-12 offset-sm-2"> |
|||
<h1 class="display-3">Update Grain Bill</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('mashes.update', $mash->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="{{$mash->beer_id}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="temp">Temperature</label> |
|||
<input type="text" class="form-control" name="temp" value="{{$mash->temp}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="duration">Duration</label> |
|||
<input type="text" class="form-control" name="duration" value="{{$mash->duration}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="stage">Stage</label> |
|||
<input type="text" class="form-control" name="stage" value="{{$mash->stage}}" /> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label for="boil">Length of Boil</label> |
|||
<input type="text" class="form-control" name="boil" value="{{$mash->boil}}" /> |
|||
</div> |
|||
<button type="submit" class="btn btn-primary">Update</button> |
|||
</form> |
|||
</div> |
|||
</div> |
|||
@endsection |
@ -0,0 +1,53 @@ |
|||
@extends('mashes') |
|||
|
|||
@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> -> {{ __('Mash Steps') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div> |
|||
|
|||
<div class="card-body"> |
|||
@if (Auth::user()->isAdmin()) |
|||
<a href="{{ route('mashes.create') }}" class="btn btn-primary">Add Mash 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">Beer</th> |
|||
<th scope="col">Temperature</th> |
|||
<th scope="col">Duration</th> |
|||
<th scope="col">Stage</th> |
|||
<th scope="col">Length of Boil</th> |
|||
@if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif |
|||
<tbody> |
|||
@foreach ($mashes as $mash) |
|||
<tr> |
|||
<td><a href="/beer/{{$mash->beer_id}}">{{$mash->beer}}</a> </td> |
|||
<td>{{$mash->temperature}} </td> |
|||
<td>{{$mash->duration}} </td> |
|||
<td>{{$mash->stage}} </td> |
|||
<td>{{$mash->boil}} </td> |
|||
@if (Auth::user()->isAdmin()) |
|||
<td><a href="{{ route('mashes.edit',$mash->id)}}" class="btn btn-primary">Edit</a></td> |
|||
<td><form action="{{ route('mashes.destroy', $mash->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 |
Write
Preview
Loading…
Cancel
Save
Reference in new issue