@extends('layouts.default_module') @section('module_name') Product Fundings Review @stop @section('table-properties') width="400px" style="table-layout:fixed;" @endsection @section('table') {{-- {!! Form::open(['method' => 'post', 'route' => ['doctor.search'], 'files'=>true]) !!} @include('admin.doctor.partial.searchfilters') {!!Form::close() !!} --}} {{-- @stop --}} User Name Product Review @foreach($review as $c) {!! ucwords($c->user->name) !!} {!! ucwords($c->product[0]->name) !!} {!! ucwords($c->review) !!} @endforeach @section('pagination') {!! $review->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@endsection @stop