generated from thegrind/laravel-dockerized
14 lines
613 B
PHP
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> |