. * */ namespace Vvveb\Controller\Posts; use Vvveb\Controller\Crud; #[\AllowDynamicProperties] class Revision extends Crud { protected $type = 'post_content_revision'; protected $type_id = 'created_at'; function index() { $this->options['post_id'] = $this->request->get['post_id'] ?? false; return $this->get(); } }