feat: L'Ami Fiduciaire V1.0.0 — full codebase with Story 0.1 complete

Initial commit of the L'Ami Fiduciaire SaaS platform built on Laravel 12,
Vue 3, Inertia.js 2, and Tailwind CSS 4.

Story 0.1 (rename folders to declarations in database) is implemented and
code-reviewed: migration, rollback, and 6 Pest tests all passing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 23:33:10 +00:00
commit 35545c2a8f
1517 changed files with 246774 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
<script setup lang="ts">
import { Form, Head, usePage } from '@inertiajs/vue3';
import { computed } from 'vue';
import AppLogoIcon from '@/components/AppLogoIcon.vue';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import { Spinner } from '@/components/ui/spinner';
type Folder = {
id: number;
title: string;
client_name: string;
};
type Props = {
folder: Folder;
token: string;
submitUrl: string;
};
defineProps<Props>();
const page = usePage<{ flash?: { type?: string; message?: string } }>();
const flash = computed(() => page.props.flash);
</script>
<template>
<div class="flex min-h-svh flex-col bg-background">
<Head :title="`Confirmation - ${folder.title}`" />
<header class="border-b border-sidebar-border/70 px-4 py-4">
<div class="mx-auto flex max-w-2xl items-center gap-3">
<AppLogoIcon class="size-8 fill-current text-[var(--foreground)]" />
<div>
<h1 class="font-medium">{{ folder.title }}</h1>
<p class="text-sm text-muted-foreground">{{ folder.client_name }}</p>
</div>
</div>
</header>
<main class="mx-auto w-full max-w-2xl flex-1 p-4">
<div v-if="flash?.message" class="mb-4 rounded-lg bg-green-100 p-3 text-sm text-green-800 dark:bg-green-900/30 dark:text-green-300">
{{ flash.message }}
</div>
<div class="space-y-6">
<div>
<h2 class="text-lg font-medium">Confirmer la situation</h2>
<p class="mt-1 text-sm text-muted-foreground">
Veuillez signer ci-dessous pour confirmer la situation présentée par votre cabinet.
</p>
</div>
<Form :action="submitUrl" method="post" class="space-y-4" v-slot="{ processing }">
<div class="space-y-2">
<Label for="signature">Signature (nom complet)</Label>
<Input
id="signature"
type="text"
name="signature"
placeholder="Votre nom"
required
:disabled="processing"
/>
</div>
<Button type="submit" :disabled="processing">
<Spinner v-if="processing" class="mr-2 size-4" />
Confirmer
</Button>
</Form>
</div>
</main>
</div>
</template>