@extends('layouts.loin')

@section('content')
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-8 cardshow" style="text-align: center;">
        <p class="fg">กระทู้ของฉัน</p>
            <table class="table table-striped">
                <thead class="ff">
                    <th>Title</th>
                    <th>Body</th>
                    <th>Like</th>
                    <th>Comment</th>
                    <th>Action</th>
                </thead>
                <tbody>
                @foreach($p as $post)
                    <tr>
                        <td><p class="maxText">{{$post->title}}</p></td>
                        <td><p class="maxText">{{$post->body}}</p></td>
                        <td>{{$ar[($post->id)-1]}}</td>
                        <td>{{$co[($post->id)-1]}}</td>
                        <td><a href="{{ route('post.show', $post->id) }}"> <img class="icon" src="{{{ asset('img/ShowPosts.png') }}}"/></a></td>
                    </tr>
                @endforeach
                </tbody>
            </table>
        </div>
    </div>
</div>
@endsection