- Added standard Laravel directory structure and configuration. - Included Svelte and Tailwind configuration for the admin interface. - Added core PHPUnit and testing scripts.
11 lines
274 B
PHP
11 lines
274 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div id="app"
|
|
data-component="TranslationManager"
|
|
data-locale="{{ $locale }}"
|
|
data-overrides="{{ json_encode($overrides) }}"
|
|
data-available-locales="{{ json_encode($availableLocales) }}">
|
|
</div>
|
|
@endsection
|