@extends('author.layout.app') @section('heading', 'Posts') @section('button') Add @endsection @section('main_content')
@foreach($posts as $row) @endforeach
SL Thumbnail Post Title Sub Category Category Author Language Action
{{ $loop->iteration }} {{ $row->post_title }} {{ $row->rSubCategory->sub_category_name }} {{ $row->rSubCategory->rCategory->category_name }} @if($row->author_id != 0) {{ Auth::guard('author')->user()->name }} @endif {{ $row->rLanguage->name }} Edit Delete
@endsection