@extends('layouts.admin') @section('status2','active') @section('title','Posts') @section('headerTitle','Posts') @section('content')
Posts
Create New Post
@if ($message = Session::get('success'))
{{ $message }}
@endif @php $i = 0; @endphp @foreach ($posts as $post) @endforeach
No
Category
Title
Date
Location
Description
Image
Liked
Action
{{ ++$i }}
{{ $post->category }}
{{ $post->title }}
{{ $post->date }}
{{ $post->location }}
{!! $post->description !!}
{{ $post->liked }}
@csrf @method('DELETE')
@endsection