@extends('adminsection.layouts.master') @section('title') Blog || @parent @stop @section('page-title') Blog @stop @section('main-content')
Add New
@if(app('request')->input('title')) Clear Search @else @endif
@foreach($blogs as $blog) @endforeach
# Title Published At Action
{{$loop->iteration}} {{$blog->title}} {{carbonDate($blog->published_at, 'y-m-d')}} Edit Delete View
{{$blogs->links()}}
@stop