@extends('layout.template') @section('title', 'Home') @section('content')

Users

@if (session('status')) @endif @if ($errors->any()) @endif
@if(!empty($data['user'])) @for($i=0; $i < count($data['user']); $i++) @endfor @endif
Name Email Tel. Company Country User Type Status
{{$data['user'][$i]->firstname.' '.$data['user'][$i]->lastname}} {{$data['user'][$i]->email}} {{$data['user'][$i]->tel}} {{$data['user'][$i]->company}} {{$data['user'][$i]->name}} {{$data['user'][$i]->type_name}} @if(in_array('0', array($data['user'][$i]->status))) Unverified @else Verified @endif
@endsection @section('footer') @endsection