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">PERIODE</h1>
|
2015-07-19 06:49:24 +00:00
|
|
|
|
|
|
|
<div class="col-md-8">
|
|
|
|
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<table class="table table-striped table-bordered">
|
|
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
|
|
<th>Days</th>
|
|
|
|
<th>Options</th>
|
|
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
@foreach($periodes as $periode)
|
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
<tr>
|
2015-07-19 06:49:24 +00:00
|
|
|
<td>{{ $periode->days }}</td>
|
|
|
|
<td><a href="{{ route('settings.periode.edit', $periode->id) }}"><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></a></td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|