@extends('layouts.master') @push('css') @endpush @section('content')

@if (Session::has('message'))
{{ Session::get('message.text') }}
@endif {!! Form::open(['url' => url()->current(), 'method' => 'GET']) !!}
{!! Form::text('cari', Request::get('cari'), ['class' => 'form-control', 'placeholder' => 'Cari...']) !!}
{!! Form::close() !!}
@foreach ($userLogs as $userLog) @endforeach
No Waktu Keterangan IP Address User Data
{{ $loop->iteration + $userLogs->firstItem() - 1 }} {{ $userLog->created_at->format("Y-m-d H:i:s") }} {{ $userLog->keterangan }} {{ $userLog->ip_address }} {{ $userLog->user->name }}
{!! $userLogs->links() !!}
@endsection