tethys/resources/views/rdr/settings/shelf/shelf.blade.php

45 lines
822 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
@extends('layouts.app')
2015-07-19 06:49:24 +00:00
@section('content')
2018-08-06 12:30:51 +00:00
<h1 class="title">Shelf</h1>
2015-07-19 06:49:24 +00:00
<div class="col-md-8">
<a href="{{ route('settings.shelf.add') }}" class="btn btn-danger">
2018-08-06 12:30:51 +00:00
ADD NEW SHELF
2015-07-19 06:49:24 +00:00
</a>
<br><br>
<table class="table table-striped table-bordered">
2018-08-06 12:30:51 +00:00
<thead>
2015-07-19 06:49:24 +00:00
<th>Shelf</th>
<th>Options</th>
</thead>
<tbody>
@foreach($shelves as $shelf)
2018-08-06 12:30:51 +00:00
<tr>
2015-07-19 06:49:24 +00:00
<td>{{ $shelf->shelf }}</td>
2018-08-06 12:30:51 +00:00
<td>
<a href="{{ route('settings.shelf.edit', $shelf->id) }}"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></a> &nbsp;
<a href="{{ route('settings.shelf.delete', $shelf->id) }}"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a>
</td>
2015-07-19 06:49:24 +00:00
</tr>
@endforeach
</tbody>
</table>
</div>
@stop