@extends('admin') @section('content')
Client Review {!!link_to_route('clientreviewadmin.create','',null,['class'=>'glyphicon-plus btn btn-xs btn-primary pull-right'])!!}
@foreach($clientreview as $row) @endforeach
S.No Name Country Action
{{$i++}} {{$row->client_name}} {{ $row->country}} {!! link_to_route('clientreviewadmin.edit',' Edit',$row->id,['class'=>'glyphicon glyphicon-pencil btn btn-xs btn-primary']) !!} {!! link_to_route('clientreviewadmin.destroy',' Delete',$row->id,['data-method'=>'delete','class'=>'glyphicon glyphicon-pencil btn btn-xs btn-danger']) !!}
@stop