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