@extends('portal_pages.layouts.master') @section('content') @section('title') | Posts Listing @endsection
Add post
@foreach($posts as $post) @endforeach
Id title body Action
{{ $post->id }} {{ $post->title }} {{ $post->description }} Edit Delete
@endsection