2025-03-23 14:06:44 +01:00

14 lines
328 B
PHP

<?php
namespace Portfolio\Source\Design\Controller\Project;
use Portfolio\Source\Design\Controller\Base;
class Index extends Base
{
public function index(): void
{
// Affiche la vue portfolio/template/project/index.html dans le layout portfolio/template/base.html
$this->show('project.index');
}
}