@extends('layouts.admin')
@section('page-header')
Posts
Add New
@endsection
@section('content')
Title |
Owner |
Posted at |
Updated at |
# of Comments |
|
@forelse ($posts as $post)
{{ $post->title }} |
{{$post->user->fname}} {{$post->user->sname}} |
{{ $post->created_at }} |
{{ $post->updated_at }} |
{{ $post->comments_count }} |
View
Edit
|
@empty
No posts yet |
@endforelse
@endsection
@section('scripts')
@endsection