@extends('admin.layout.app') @section('heading', 'Blogs') @section('rightside_button') Add New @endsection @section('main_content')
@foreach ($blogs as $item) @endforeach
# Slug Page Type Status Title Card Photo Blog Photo Blog Photo 2 Actions
{{ $loop->iteration }} {{ $item->slug }} @switch($item->page_type) @case('single') Single @break @case('left_sidebar') Left Sidebar @break @case('right_sidebar') Right Sidebar @break @default - @endswitch {{ ucfirst($item->status) }} {{ $item->card_title }} @if ($item->card_photo) @endif @if ($item->blog_photo) @endif @if ($item->blog_photo2) @endif Edit Delete
@endsection