Re-synced controllers, configs, libraries, seeds, and docs with the latest API expectations and response helpers.
15 lines
302 B
PHP
Executable File
15 lines
302 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
/**
|
|
* PagesController - Serves view pages
|
|
*
|
|
* This controller only returns views. No business logic.
|
|
* All data is fetched via API calls from the frontend.
|
|
*/
|
|
class PagesController extends BaseController
|
|
{
|
|
// Add page methods here as needed
|
|
}
|