@extends('backend.layouts.main') @section('title') Publications @endsection @section('content')

Publications List

@foreach ($publications as $publication) @endforeach
S.N. Image Title Category Type Display Order Status Actions
{{ $loop->iteration }} @if ($publication->image) {{ $publication->title }} @else @endif {{ $publication->title }} {{ $publication->category->name ?? 'None' }} {{ $publication->publication_type }} {{ $publication->display_order }} @if ($publication->is_published) Published @else Draft @endif
@endsection @section('scripts') @endsection