@extends('admin.layout.layout') @section('content')

Users

@if ($message = Session::get('success')) @endif @if (Session::has('error')) @endif

Users List

@foreach ($posts as $index => $post) @endforeach
Sr no. Title Desc. Uploaded by Action
{{ $index + 1 }} {{ $post->title }} {{ $post->description }} {{ $post->uploaded_by }} View Edit
@csrf @method('DELETE')
SR no. Title Desc. Uploaded by Action
@endsection