@extends('layouts.template') @section('page-header') @include('components.page-header', [ 'pageTitle' => $pageTitle, 'pageSubtitle' => '', 'pageIcon' => $pageIcon, 'parentMenu' => $parentMenu, 'current' => $current ]) @endsection @section('content') @include('components.notification')

User Activity

@error('start')
{{ $message }}
@enderror
@error('end')
{{ $message }}
@enderror
{{--
--}} {{--
--}} {{--
--}} {{--
--}}
{{--

Basic Inputs

--}}
@php $page = Request::get('page'); $no = !$page || $page == 1 ? 1 : ($page - 1) * 10 + 1; @endphp @foreach ($logActivity as $item) @php $no++; @endphp @endforeach
# User Jenis Transaksi Tipe Keterangan Waktu
{{ $no }} {{ $item->name }} {{ $item->jenis_transaksi }} {{ $item->tipe }} {{ $item->keterangan }} {{date('d-m-Y H:i:s', strtotime($item->created_at))}}
{{ $logActivity->appends(Request::all())->links('vendor.pagination.custom') }}
@endsection