@extends('admin.layouts.master') @section('title') Comments Blogs @endsection @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($row->commentable as $comment) @endforeach
user name status rate comments Action
{{ $comment->customer->name() ?? null }}
status == 'active' ? 'checked' : ''}} onchange="toggleStatus({{$comment->id}}, this.checked ? 'active' : 'noActive0')">
{{ $comment->value }}
@endsection @section('js') @endsection