@extends('layouts.template') @section('content')

@foreach($userdata as $view) @endforeach
{{ trans('app.first_name')}} {{ trans('app.last_name')}} {{ trans('app.email')}} {{ trans('app.phone')}} {{ trans('app.status')}}
{{$view->first_name}} {{$view->last_name}} {{$view->email}} {{$view->phone}} {{$view->status}}
@stop