23 lines
606 B
PHP
23 lines
606 B
PHP
|
|
@extends("lucent::layouts.channel")
|
||
|
|
|
||
|
|
@section("content")
|
||
|
|
<h3 class="header-small mb-4">Latest Content changes</h3>
|
||
|
|
|
||
|
|
|
||
|
|
@if($records->isNotEmpty())
|
||
|
|
<div class="lx-card mb-4">
|
||
|
|
<div class="lx-table p-0">
|
||
|
|
<table class="">
|
||
|
|
<tbody>
|
||
|
|
@foreach($records as $record)
|
||
|
|
<tr>
|
||
|
|
@include("lucent::records.card-row")
|
||
|
|
</tr>
|
||
|
|
@endforeach
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@endif
|
||
|
|
|
||
|
|
@endsection
|