@extends('admin.layouts.master')
@section('content')
| SN |
Blog type |
Tag name |
Image |
Status |
Operation |
@php
$i=1;
@endphp
@foreach(App\Models\Blog::all() as $blog)
| {{ $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 |
|
@endforeach
@endsection