You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.1 KiB

7 years ago
@extends('app')
@section('content')
7 years ago
<section class="module-container">
<header>
<div class="section-title">Application list</div>
<div class="module-actions">
<a href="{{ route('items.create') }}" title="" class="button"><i class="fa fa-plus"></i><span>Add</span></a>
</div>
</header>
7 years ago
<table class="table table-hover">
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Url</th>
<th class="text-center" width="100">Edit</th>
<th class="text-center" width="100">Delete</th>
</tr>
</thead>
<tbody>
@if($apps->first())
@foreach($apps as $app)
<tr>
<td>{{ $app->title }}</td>
<td>{{ $app->description }}</td>
<td>{{ $app->url }}</td>
<td class="text-center"><a href="{!! route('items.edit', $app->id) !!}" title="Edit {!! $app->title !!}"><i class="fas fa-edit"></i></a></td>
7 years ago
<td class="text-center">
7 years ago
{!! Form::open(['method' => 'DELETE','route' => ['items.destroy', $app->id],'style'=>'display:inline']) !!}
<button type="submit"><i class="fa fa-trash-alt"></i></button>
{!! Form::close() !!}
7 years ago
</td>
</tr>
@endforeach
@else
<tr>
7 years ago
<td colspan="5" class="form-error text-center">
7 years ago
<strong>No items found</strong>
</td>
</tr>
@endif
</tbody>
</table>
7 years ago
</section>
7 years ago
@endsection