@extends('layouts.master') @section('content') @if (Auth::user()->isOwner()) @include('admin.search_form') @endif
@if(!empty($users)) @foreach ($users as $user) {{ $user->callingstationid }}
{{ $user->username }}
@endforeach @else No user found... @endif
@stop