@extends('layouts.app-admin')
@section('content')
| ID |
Nama |
Path |
Status |
Aksi |
@foreach($themes as $themeId => $theme)
| {{ $themeId }} |
{{ $theme['name'] }} |
{{ $theme['path'] }} |
@if($theme['status'] === 'active')
Active
@else
Inactive
@endif
|
✏️
|
@endforeach
@endsection