@extends('admin.template.master') @section('title', $title) @section('content')
{{-- --}}

Blogs List

@include('admin.partials.flash_message') @if(count($blogs) > 0) @foreach($blogs as $k=>$u) @endforeach @else @endif
S.No Title Image Description Created On Created By Action
{{ ++$k }} {{ $u->title }} @if($u->image) @else @endif {{ $u->short_description }} {{ Carbon\Carbon::parse($u->created_at)->format('d-M-Y H:i:s') }} @foreach($users as $user) @if($user->id == $u->added_by) {{ $user->name }} @endif @endforeach  
No Data Found
S.No Title Image Description Created On Created By Action
@endsection