@extends('layouts/master') @section('title') User Management - Technic Solder @stop @section('content')
User List
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
@foreach ($users as $user) @endforeach
ID # Email Username Updated by (User - IP) Updated at Actions
{{ $user->id }} {{ $user->email }} {{ $user->username }} @if ($user->updated_by_user) {{ $user->updated_by_user->username }} @else N/A @endif - {{ empty($user->updated_by_ip) ? "N/A" : $user->updated_by_ip }} {{ date_format($user->updated_at, 'M-d-Y g:ia') }} {!! Html::link('user/edit/'.$user->id,'Edit', ['class' => 'btn btn-xs btn-warning']) !!} {!! Html::link('user/delete/'.$user->id, 'Delete', ['class' => 'btn btn-xs btn-danger']) !!}
@endsection @section('bottom') @endsection