@extends('admin.template') @section('styles') @endsection @section('content')
  • @foreach($blogscomments as $key => $value) @endforeach
    # Name Date Message Page Url User IP Approved options
    {{$loop->iteration}} {{$value->bname}} {{$value->created_at->format('d-m-Y H:i:s')}} {{strip_tags($value->bmessage)}} {{$value->page_url}} {{$value->user_ip}} {{Form::select('is_approved',['0' => 'No','1' => 'Yes'],$value->is_approved,['class' => 'form-control input inptu-sm target','data-id'=>$value->id])}} Delete
    Edit
@endsection @section('scripts') @endsection