@extends('template')
@section('title', $title)
@section('content')
<style>
.th-text {
color: #000;
font-size: 12px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.td-text {
color: #0B4238;
font-family: Open Sans;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
</style>
<h4><b>Profile</b></h4>
<div class="row">
<div class="col">
<div class="card">
<div class="card-body p-4">
<p><span style="color: rgb(168, 168, 168)"><b>Nama</b></span><br><span><b>{{ $profile->name }}</b></span>
</p>
<hr>
<p><span
style="color: rgb(168, 168, 168)"><b>Username</b></span><br><span><b>{{ $profile->username }}</b></span>
</p>
<hr>
<p><span
style="color: rgb(168, 168, 168)"><b>Email</b></span><br><span><b>{{ $profile->email }}</b></span>
</p>
<hr>
</div>
</div>
</div>
</div>
<h4><b>Aktivitas</b></h4>
<div class="card">
<div class="card-body p-4">
<table class="table table-sm open-sans">
<thead>
<tr class="table-success th-text">
<th class="text-center" scope="col">NO.</th>
<th scope="col">Date & Time</th>
<th scope="col" class="">Description</th>
</tr>
</thead>
<tbody>
@foreach ($LogAktivitas as $a)
<tr class="table-secondary">
<th scope="row" class="th-text text-center">
{{ $loop->iteration + ($LogAktivitas->currentPage() - 1) * $LogAktivitas->perPage() }}</th>
<td class="th-text">{{ $a->created_at }}</td>
<td class="th-text">{{ $a->subjek }}</td>
</tr>
@endforeach
</tbody>
</table>
{{ $LogAktivitas->links() }}
</div>
</div>
@endsection
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]