@extends('backEnd.layouts.master') @section('title','Blog Manage') @section('css') @endsection @section('content')

Blog Manage

@foreach($data as $key=>$value) @endforeach
SL Title Category Image Status Action
{{$loop->iteration}} {{ Str::limit($value->title, 50) }} {{$value->category?$value->category->title:''}} @if($value->status==1)Active @else Inactive @endif
@if($value->status == 1)
@csrf
@else
@csrf
@endif
@csrf
@endsection @section('script') @endsection