@extends('userPanel.layout.master')
@section('title','Blog-page')
@section('content')
@if(Session::get('success'))
@endif
@if(Session::get('updated'))
@endif
@if(Session::get('delete'))
@endif
Approved Blogs
S.No |
Image |
Blog Title |
Status |
Tags |
Short Description |
Created At |
Actions |
S.No |
Image |
Blog Title |
Status |
Tags |
Short Description |
Created At |
Actions |
@foreach($getawaitblog as $bloglist)
{{$num++}} |
 |
{{$bloglist->title}} |
Awaiting Blog |
@foreach($bloglist->tags as $tagslist)
{{$tagslist->name }}
@endforeach
|
{{ substr($bloglist->short_description,0,30) }}... |
{{$bloglist->created_at->format('d-m-y H:i M')}} |
|
@endforeach
`
@endsection
@section('script')
@endsection