WizdomWeb/app/Controllers/TestimonialsController.php

20 lines
533 B
PHP

<?php
namespace WizdomNetworks\WizeWeb\Controllers;
use WizdomNetworks\WizeWeb\Core\Controller;
class TestimonialsController extends Controller
{
public function index(): void
{
$contactForm = $this->getContactForm('Want to leave us feedback?');
$this->render('pages/testimonials', [
'title' => 'Testimonials - Wizdom Networks',
'content' => '<h1>Testimonials</h1>
<p>Here\'s what our clients have to say about us:</p>' . $contactForm
]);
}
}