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