@extends('frontend.layouts.template') @section('content')
{{ Request::input('writer') }}
{{ count($blogs) }} BLOGS
BLOG LIST
@if ($blogs) @foreach ($blogs as $idx => $blog)
@php $writers = objTags($blog->writer); $wlink = url('blog/writer?writer='); @endphp
@if ($writers) @foreach ($writers as $writer) {{ $writer->text }} @endforeach @endif {{-- {{ $blog->writer }} --}} {{ date('d-m-Y',strtotime( $blog->created_at ) ) }}
@if( $blog->attach_blogs && $blog->attach_blogs->id ) {{-- --}}   Download @endif
@endforeach @endif
@endsection @section('stylesheet') @endsection @section('javascript') @endsection