@extends('dashboard.layouts.main') @section('dashboardcontent') @if ($message = Session::get('success')) @endif @if ($message = Session::get('Delete')) @endif
Latest Posts
@foreach($Posts as $Post) @endforeach
Details Details Category Author Featured Actions
{!! substr($Post->Title_en, 0, 190) !!} {{ date('M j, Y', strtotime($Post->created_at)) }}
@if(isset($Post->Category->title)) {{ $Post->Category->title }} @else No Category @endif
@if(isset($Post->User->name)) {{ $Post->User->name }} @else No User @endif {{ $Post->featured }}
Edit
@csrf @method('DELETE')
@endsection