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

36 lines
1.1 KiB
PHTML

@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-9 px-4">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Title</th>
<th scope="col">Date</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
@foreach($posts as $post)
{{-- todo: set proper href link for post entry--}}
<tr>
<th scope="row">{{$post->id}}</th>
<td><a href="" class="text-dark">{{$post->title}}</a></td>
<td>{{$post->created_at->format("y-m-d")}}</td>
<td></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection