- Added standard Laravel directory structure and configuration. - Included Svelte and Tailwind configuration for the admin interface. - Added core PHPUnit and testing scripts.
14 lines
417 B
PHP
14 lines
417 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div id="app"
|
|
data-component="ThemeIndex"
|
|
data-admin-path="{{ config('cms.admin_path', 'loom') }}"
|
|
data-themes="{{ json_encode($themes) }}"
|
|
data-active-theme="{{ $activeTheme }}">
|
|
<div class="ui active inverted dimmer">
|
|
<div class="ui text loader">Loading Themes...</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|