@extends('layouts.admin') @section('title') @lang('Manage Blog Comment') @endsection @section('breadcrumb')

@lang('Manage Blog Comment')

@endsection @section('content')
@forelse ($comments as $item) @empty @endforelse
{{ __('Blog') }} {{ __('Name') }} {{ __('Email') }} {{ __('Comment') }} {{ __('Action') }}
{{ $item->blog->title }} {{ $item->name }} {{ $item->email }} {{ $item->comment }}
@lang('No Data Found')
@endsection @push('script') @endpush