pixelfed/resources/views/admin/pages/home.blade.php

49 lines
1.5 KiB
PHP
Raw Normal View History

2019-02-10 23:59:29 +00:00
@extends('admin.partial.template')
@include('admin.settings.sidebar')
@section('section')
<div class="title">
<h3 class="font-weight-bold">Pages</h3>
<p class="lead">Set custom page content</p>
</div>
<hr>
2019-02-11 00:46:51 +00:00
<p class="alert alert-warning">
2019-06-05 00:19:41 +00:00
<strong>Feature Unavailable:</strong> This feature will be released in a future version.
2019-02-11 00:46:51 +00:00
</p>
2019-06-05 00:19:41 +00:00
{{-- <div class="table-responsive">
2019-02-10 23:59:29 +00:00
<table class="table">
<thead class="bg-light">
<tr class="text-center">
<th scope="col" class="border-0" width="5%">
<span>ID</span>
</th>
<th scope="col" class="border-0" width="50%">
<span>Slug</span>
</th>
<th scope="col" class="border-0" width="15%">
<span>Active</span>
</th>
<th scope="col" class="border-0" width="30%">
<span>Updated</span>
</th>
</tr>
</thead>
<tbody>
@foreach($pages as $page)
<tr class="font-weight-bold text-center page-row">
<th scope="row">
<a href="{{$page->editUrl()}}">{{$page->id}}</a>
</th>
<td>{{$page->slug}}</td>
<td>{{$page->active ? 'active':'inactive'}}</td>
<td>{{$page->updated_at->diffForHumans(null, true, true, true)}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="d-flex justify-content-center mt-5 small">
{{$pages->links()}}
2019-02-11 00:46:51 +00:00
</div> --}}
2019-02-10 23:59:29 +00:00
@endsection