authentikate/resources/views/dashboard.blade.php
Javier Feliz eeb6b4bc0e
Some checks failed
tests / ci (push) Waiting to run
linter / quality (push) Has been cancelled
Initial commit
2025-07-27 02:31:34 -04:00

14 lines
613 B
PHP

<x-layouts.app :title="__('Dashboard')">
<div class="max-w-7xl mx-auto py-12">
<livewire:forms.new-application />
<div class="mt-4 grid grid-cols-3">
@foreach (App\Models\Application::all() as $app)
<div class="p-4 flex flex-col gap-4 rounded-md bg-light-200 dark:bg-zinc-700">
<flux:heading>{{ $app->name}}</flux:heading>
<flux:text>Client ID: {{ $app->client_id }}</flux:text>
<flux:text>Secret: {{ $app->client_secret }}</flux:text>
</div>
@endforeach
</div>
</div>
</x-layouts.app>