@extends('backend.layout.master') @section('title','Blog-page') @section('content') @if(Session::get('success')) @endif @if(Session::get('updated')) @endif @if(Session::get('delete')) @endif

Blog

Blog
@foreach($getblog as $bloglist) @endforeach
S.No Image User Blog title Category Status Tags Slug Short-Desc Description Updated at Actions
S.No Image User Blog title Category Name Status Tags Slug Short-Desc Description Updated at Actions
{{$num++}} img {{$bloglist->user->name}} {{$bloglist->title}} {{$bloglist->category->name}} @if($bloglist->active==1) Publish @else awaiting @endif @foreach($bloglist->tags as $tagslist) {{$tagslist->name }} @endforeach {{$bloglist->category->slug}} {{ substr($bloglist->short_description,0,30) }}... {!! substr($bloglist->description,0,20) !!}... {{$bloglist->updated_at->format('d-m-y H:i M')}}
`
@endsection @section('script') @endsection