jk
3 years ago
6 changed files with 203 additions and 70 deletions
-
56app/Http/Controllers/AdjunctAdditionController.php
-
65resources/views/adjunctadditions.blade.php
-
48resources/views/adjunctadditions/create.blade.php
-
47resources/views/adjunctadditions/edit.blade.php
-
54resources/views/adjunctadditions/index.blade.php
-
3routes/web.php
@ -1,69 +1,8 @@ |
|||||
@extends('layouts.app') |
@extends('layouts.app') |
||||
|
|
||||
@section('content') |
@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> -> {{ __('Adjunct Additions') }}<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 Adjunct Addition |
|
||||
</button> |
|
||||
@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('adjunctadditions.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="">Adjunct ID</label> |
|
||||
<input type="text" class="form-control" name="adjunct_id" > |
|
||||
</div> |
|
||||
<div class="form-group"> |
|
||||
<label for="">Amount</label> |
|
||||
<input type="text" class="form-control" name="amount"> |
|
||||
</div> |
|
||||
<div class="form-group"> |
|
||||
<label for="">Timing</label> |
|
||||
<input type="text" class="form-control" name="timing"> |
|
||||
</div> |
|
||||
<div class="form-group"> |
|
||||
<label for="">Alternative (ID)</label> |
|
||||
<input type="text" class="form-control" name="alternative"> |
|
||||
</div> |
|
||||
<div class="form-group"> |
|
||||
<label for="">Notes</label> |
|
||||
<textarea type="text" class="form-control" name="notes"></textarea> |
|
||||
</div> |
|
||||
<input type="submit" name="submit" value="Submit" class="btn btn-success"> |
|
||||
</form> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
|
<div class="container"> |
||||
|
@yield('main') |
||||
</div> |
</div> |
||||
|
|
||||
@endsection |
@endsection |
@ -0,0 +1,48 @@ |
|||||
|
@extends('adjunctadditions') |
||||
|
|
||||
|
@section('main') |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 offset-sm-2"> |
||||
|
<h1 class="display-3">Add an Adjunct Addition</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('adjunctadditions.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="adjunct_id">Adjunct ID</label> |
||||
|
<input type="text" class="form-control" name="adjunct_id" > |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="amount">Amount</label> |
||||
|
<input type="text" class="form-control" name="amount"> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="timing">Timing</label> |
||||
|
<input type="text" class="form-control" name="timing"> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="alternative">Alternative (ID)</label> |
||||
|
<input type="text" class="form-control" name="alternative"> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="notes">Notes</label> |
||||
|
<textarea type="text" class="form-control" name="notes"></textarea> |
||||
|
</div> |
||||
|
<button type="submit" class="btn btn-primary">Add Adjunct Addition</button> |
||||
|
</form> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
@endsection |
@ -0,0 +1,47 @@ |
|||||
|
@extends('adjunctadditions') |
||||
|
@section('main') <div class="row"> |
||||
|
<div class="col-sm-12 offset-sm-2"> |
||||
|
<h1 class="display-3">Update Adjunct Addition</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('adjunctadditions.update', $adjunctaddition->id) }}"> |
||||
|
@method('PATCH') |
||||
|
@csrf |
||||
|
up">
|
||||
|
<label for="beer_id">Beer ID</label> |
||||
|
<input type="text" class="form-control" name="beer_id" value="{{$adjunctaddition->beer_id}}" /> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="adjunct_id">Adjunct ID</label> |
||||
|
<input type="text" class="form-control" name="adjunct_id" value="{{$adjunctaddition->adjunct_id}}" /> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="amount">Amount</label> |
||||
|
<input type="text" class="form-control" name="amount" value="{{$adjunctaddition->amount}}" /> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="timing">Timing</label> |
||||
|
<input type="text" class="form-control" name="timing" value="{{$adjunctaddition->timing}}" /> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="alternative">Alternative (ID)</label> |
||||
|
<input type="text" class="form-control" name="alternative" value="{{$adjunctaddition->alternative}}" /> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label for="notes">Notes</label> |
||||
|
<textarea type="text" class="form-control" name="notes">{{$adjunctaddition->notes}}</textarea> |
||||
|
</div> |
||||
|
<button type="submit" class="btn btn-primary">Update</button> |
||||
|
</form> |
||||
|
</div> |
||||
|
</div> |
||||
|
@endsection |
@ -0,0 +1,54 @@ |
|||||
|
@extends('adjunctadditions') |
||||
|
|
||||
|
@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> -> {{ __('Adjunct Additions') }}<span class="backlink"><a href="{{url()->previous()}}">Go Back</a></span></div> |
||||
|
|
||||
|
<div class="card-body"> |
||||
|
@if (Auth::user()->isAdmin()) |
||||
|
<a href="{{ route('adjunctadditions.create') }}" class="btn btn-primary">Add Adjunct Addition</a> |
||||
|
@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">Adjunct</th> |
||||
|
<th scope="col">Beer</th> |
||||
|
<th scope="col">Amount</th> |
||||
|
<th scope="col">Timing</th> |
||||
|
<th scope="col">Alternative</th> |
||||
|
<th scope="col">Notes</th> |
||||
|
@if (Auth::user()->isAdmin())<th colspan="2" scope="col">Admin</th>@endif |
||||
|
<tbody> |
||||
|
@foreach ($adjunctadditions as $adjunctaddition) |
||||
|
<tr> |
||||
|
<td><a href="/adjunct/{{$adjunctaddition->adjunct_id}}">{{$adjunctaddition->name}}</a> </td> |
||||
|
<td><a href="/beer/{{$adjunctaddition->beer_id}}">{{$adjunctaddition->beer}}</a> </td> |
||||
|
<td>{{$adjunctaddition->amount}} </td> |
||||
|
<td>{{$adjunctaddition->timing}} </td> |
||||
|
<td><a href="/adjunct/{{$adjunctaddition->alternative}}">{{$adjunctaddition->alternativename}}</a> </td> |
||||
|
<td>{{$adjunctaddition->notes}} </td> |
||||
|
@if (Auth::user()->isAdmin()) |
||||
|
<td><a href="{{ route('adjunctadditions.edit',$adjunctaddition->id)}}" class="btn btn-primary">Edit</a></td> |
||||
|
<td><form action="{{ route('adjunctadditions.destroy', $adjunctaddition->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