tethys/resources/views/settings/project/category.blade.php

41 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2018-08-31 14:47:04 +00:00
@extends('settings.layouts.app')
2018-08-06 12:30:51 +00:00
@section('content')
2018-08-29 15:18:15 +00:00
<div class="header">
<h3 class="header-title">
<i class="fa fa-tasks"></i>
<span>Projects<span>
</h3>
</div>
2018-08-06 12:30:51 +00:00
2018-08-29 15:18:15 +00:00
<div class="pure-g box-content">
2018-08-06 12:30:51 +00:00
2018-08-29 15:18:15 +00:00
<div class="pure-u-1 pure-u-md-2-3">
<a href="{{ route('settings.project.add') }}" class="pure-button button-small is-primary">
<i class="fa fa-plus-circle"></i>
<span>ADD NEW Project</span>
</a>
<br><br>
<table class="pure-table pure-table-horizontal">
<thead>
<tr>
<th>Project</th>
<th>Options</th>
</tr>
</thead>
<tbody>
@foreach($projects as $project)
<tr>
<td>{{ $project->name }}</td>
<td>
<a class="edit" href="{{ route('settings.project.edit', $project->id) }}"><span></span></a> &nbsp;
<a class="delete" href="{{ route('settings.project.delete', $project->id) }}"><span></span></a>
</td>
</tr>
@endforeach
</tbody>
</table>
2018-08-06 12:30:51 +00:00
</div>
2018-08-29 15:18:15 +00:00
</div>
2018-08-06 12:30:51 +00:00
@stop