mandant-crm/frontend
Tim Stollberg 71730fef06 feat: remove Filament, add user account management
- Remove Filament /admin panel completely (AdminPanelProvider, UserResource, routes)
- Update composer.json to remove filament/filament dependency
- Add User model soft deletes with SoftDeletes trait + migration
- Strengthen UserPolicy::delete to prevent deleting last remaining admin
- Build out User module following pattern: CreateUserAction, UpdateUserAction, GetUsersAction,
  UserResource, UserController, Create/UpdateUserRequest, UserData DTO
- Add /api/users routes (index, store, update, destroy), all admin-gated via policy
- Create frontend Settings > Accounts page (settings/accounts.vue) for admin user management
- Add useUsers composable mirroring useClient pattern
- Add "Benutzer" link to settings dropdown in clients/index.vue
- All tests pass; User soft-delete and last-admin protection verified

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-07-13 13:05:40 +07:00
..
components feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
composables feat: remove Filament, add user account management 2026-07-13 13:05:40 +07:00
middleware feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
pages feat: remove Filament, add user account management 2026-07-13 13:05:40 +07:00
public feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
server feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
types feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
.gitignore feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
app.vue feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
CLAUDE.md feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
nuxt.config.ts feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
package-lock.json feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
package.json feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
README.md feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
tailwind.config.ts feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00
tsconfig.json feat(frontend): scaffold Nuxt 3 CSR SPA with full auth + client/history UI 2026-06-23 17:33:39 +07:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.