@extends('admin.layouts.master') @section('content')
@php $i=1; @endphp @foreach(App\Models\Blog::all() as $blog) @csrf @if($blog->status==1) @else @endif @endforeach
SN Blog type Tag name Image Status Operation
{{ $i++ }} {{ $blog->blog_type }} @if($blog->tags()->count()> 0) @foreach($blog['tags'] as $blog_tag)
  • {!! $blog_tag->name !!},
  • @endforeach @else no tags name included @endif
    @if($blog->image==null)

    no image

    @else @endif
    @endsection