@extends('layouts/master') @section('title')
| ID # | 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']) !!} |