Imrpoving Item, Product and Users

This commit is contained in:
2018-09-11 20:48:09 -03:00
parent 4b3c2089f5
commit 0f15e60c95
17 changed files with 155 additions and 59 deletions

View File

@@ -10,6 +10,7 @@
{{ csrf_field() }}
<div class="col"><label for="product">Add Item: </label></div>
<div class="col-6"><input type="text" class="form-control" name="item" id="item" placeholder="One Hundred Years of Solitude" required></div>
<input type="hidden" name="product_id" id="product_id" value="{{ $product['id'] }}" required>
<div class="col"><button type="submit" class="btn btn-primary">Insert</button></div>
</div>
@include ('layouts.errors')
@@ -28,8 +29,8 @@
@endif
<ul>
@forelse ($items as $item)
<li><a href="/product/{{$item['id']}}">{{$item['name']}}</a></li>
@forelse ($product->items as $item)
<li><a href="/item/{{ $item->id }}">{{ $item->name }}</a></li>
@empty
<p>There are no items yet. Include one with the form above.</p>
@endforelse