@extends('adminlte::page')
@section('title', 'Blog Review')
@section('content_header')
@stop
@section('content')
| Title |
Sub Title |
Description |
Name |
Rating |
Action |
@if(!empty($review))
@foreach ($review as $value)
| {{$value->title}} |
{{$value->title_heading}} |
{{$value->description}} |
{{$value->user_name}} |
{{$value->rating}} |
|
@endforeach
@endif
@stop