@extends('layouts.master') @section('title','blog') @section('parentPageTitle', 'All Blog') @section('content')

@translate(All Blog)

@forelse($blog as $item) @empty @endforelse
S/L @translate(Title) @translate(Category) @translate(Image) @translate(Body) @translate(Active) @translate(Action)
{{ ($loop->index+1)}} {{$item->title}} {{$item->category->name}} @if($item->img != null) {{$item->img}} @endif @foreach(json_decode($item->tags) as $tag) {{$tag}} @endforeach {{\Illuminate\Support\Str::limit($item->body,50)}}
is_active == true ? 'checked' : null}} />

@translate(No Data Found)

@endsection