10 lines
250 B
PHP
10 lines
250 B
PHP
<?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';
|
||
}
|
||
} |