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.
34 lines
1.0 KiB
PHTML
34 lines
1.0 KiB
PHTML
9 months ago
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
9 months ago
|
<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)
|
||
|
<tr>
|
||
|
<th scope="row">{{$post->id}}</th>
|
||
9 months ago
|
<td><a href="{{route('posts.show', $post->id)}}" class="text-dark">{{$post->title}}</a></td>
|
||
9 months ago
|
<td>{{$post->created_at->format("y-m-d")}}</td>
|
||
|
<td></td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
9 months ago
|
</div>
|
||
|
</div>
|
||
|
@endsection
|