@extends('layouts.backend.app') @push('header') @endpush @section('content')
@if ($errors->any()) @foreach ($errors->all() as $error)
  • @endforeach @endif
    Post Table Create Post
    @foreach($posts as $key => $post) @endforeach
    Id Title Slug Views & Likes Created At Action
    {{ $key+1 }} {{ $post->title }} {{ $post->slug }} {{ $post->created_at }}
    @foreach ($posts as $post) @endforeach
    @endsection @push('footer') {!! Toastr::message() !!} @endpush