Files
html/generated/file_06.php
2026-04-12 22:57:03 +02:00

10 lines
250 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// 6. Controllers/CRM/ClientController.php liste + CRUD
namespace Controllers\CRM;
use Models\Client;
class ClientController {
public function list(): void {
$clients = Client::all();
require 'Views/clients.php';
}
}