Documentation in Active Development
Our documentation is currently being enhanced with new content and improvements. As we work independently, comprehensive documentation requires additional time to ensure accuracy and completeness. We appreciate your patience as we continue to expand and refine our documentation resources.
API Reference
Complete API documentation
CMS API Reference
Complete API documentation for the CMS toolkit.
Content API
Get Content
use App\Models\CmsContent;
$content = CmsContent::find($id);
Create Content
CmsContent::create([
'title' => 'My Content',
'body' => 'Content body',
]);
Authentication
All API endpoints require authentication. Include your API token in the request headers.