-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c318797
commit 57e82a5
Showing
8 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<x-filament::page> | ||
<x-filament::card> | ||
@livewire(\Laravel\Jetstream\Http\Livewire\ApiTokenManager::class) | ||
</x-filament::card> | ||
</x-filament::page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<x-filament-panels::page.simple> | ||
<div class="mt-5"> | ||
@livewire(\Laravel\Jetstream\Http\Livewire\CreateTeamForm::class) | ||
</div> | ||
|
||
</x-filament-panels::page.simple> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<x-filament-panels::page> | ||
@if (Laravel\Fortify\Features::canUpdateProfileInformation()) | ||
@livewire(Laravel\Jetstream\Http\Livewire\UpdateProfileInformationForm::class) | ||
|
||
<x-section-border/> | ||
@endif | ||
|
||
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords())) | ||
<div class="mt-10 sm:mt-0"> | ||
@livewire(Laravel\Jetstream\Http\Livewire\UpdatePasswordForm::class) | ||
</div> | ||
|
||
<x-section-border/> | ||
@endif | ||
|
||
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication()) | ||
<div class="mt-10 sm:mt-0"> | ||
@livewire(Laravel\Jetstream\Http\Livewire\TwoFactorAuthenticationForm::class) | ||
</div> | ||
|
||
<x-section-border/> | ||
@endif | ||
|
||
<div class="mt-10 sm:mt-0"> | ||
@livewire(Laravel\Jetstream\Http\Livewire\LogoutOtherBrowserSessionsForm::class) | ||
</div> | ||
|
||
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures()) | ||
<x-section-border/> | ||
|
||
<div class="mt-10 sm:mt-0"> | ||
@livewire(Laravel\Jetstream\Http\Livewire\DeleteUserForm::class) | ||
</div> | ||
@endif | ||
</x-filament-panels::page> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<x-filament-panels::page> | ||
@livewire(Laravel\Jetstream\Http\Livewire\UpdateTeamNameForm::class, compact('team')) | ||
|
||
@livewire(Laravel\Jetstream\Http\Livewire\TeamMemberManager::class, compact('team')) | ||
|
||
@if (Gate::check('delete', $team) && ! $team->personal_team) | ||
<x-section-border/> | ||
|
||
@livewire(Laravel\Jetstream\Http\Livewire\DeleteTeamForm::class, compact('team')) | ||
@endif | ||
</x-filament-panels::page> |
6 changes: 6 additions & 0 deletions
6
resources/views/filament/resources/gedcom-resource/pages/gedcom.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<x-filament-panels::page> | ||
{{-- <livewire:pedigree-chart /> | ||
<livewire:fan-chart-component /> | ||
<livewire:descendant-chart-component /> | ||
<livewire:daboville-report /> --}} | ||
</x-filament-panels::page> |
15 changes: 15 additions & 0 deletions
15
resources/views/filament/widgets/daboville-report.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Daboville Report</title> | ||
<link href="{{ asset('css/app.css') }}" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div id="descendant-chart-container" class="flex justify-center items-center w-full h-screen bg-gray-100 overflow-auto"> | ||
<!-- Chart will be rendered inside this div by descendant-chart.js --> | ||
</div> | ||
<script src="{{ asset('js/filament/widgets/components/descendant-chart.js') }}"></script> | ||
</body> | ||
</html> |
15 changes: 15 additions & 0 deletions
15
resources/views/filament/widgets/descendant-chart.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Descendant Chart</title> | ||
<link href="{{ asset('css/app.css') }}" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div id="descendant-chart-container" class="flex justify-center items-center w-full h-screen bg-gray-100 overflow-auto"> | ||
<!-- Chart will be rendered inside this div by descendant-chart.js --> | ||
</div> | ||
<script src="{{ asset('js/filament/widgets/components/descendant-chart.js') }}"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div></div> |