@extends('layouts.admin') @section('content')

{{ __('Blog Comment List') }}

@foreach($comments as $comment) @endforeach
{{ __('Blog') }} {{ __('User') }} {{ __('Comment') }} {{ __('Status') }} {{__('Action')}}
{{@$comment->blog->title}}
{{ @$comment->user->name }}
{{ $comment->comment }}
{{@$comments->links()}}
@endsection @push('style') @endpush @push('script') @endpush