@extends('admin.admin_dashboard') @section('admin')

Approve Review {{ count($review) }}

@foreach($review as $key=> $item) @endforeach
Sl Image News User Comment Status Action
{{ $key+1 }} {{ $item['news']['news_title'] }} {{ $item['user']['name'] }} {{ Str::limit($item->comment ,25) }} @if($item->status == 0) Pending @else Publish @endif Delete
@endsection