{"id":25081779,"url":"https://github.com/rapideinternet/exposia-bakkuclient","last_synced_at":"2026-04-30T01:37:02.015Z","repository":{"id":230387329,"uuid":"778725039","full_name":"rapideinternet/Exposia-BakkuClient","owner":"rapideinternet","description":"BakkClient is a Laravel client for Bakku CMS. 😎","archived":false,"fork":false,"pushed_at":"2024-05-23T11:59:04.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"stable","last_synced_at":"2025-04-01T09:47:16.553Z","etag":null,"topics":["bakku","blade","cms","html","laravel"],"latest_commit_sha":null,"homepage":"https://exposia.nl","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rapideinternet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-28T09:24:58.000Z","updated_at":"2024-03-29T10:08:17.000Z","dependencies_parsed_at":"2024-03-29T12:25:32.935Z","dependency_job_id":"a2be3ec6-685c-47ac-80a2-e0f6ca32617b","html_url":"https://github.com/rapideinternet/Exposia-BakkuClient","commit_stats":null,"previous_names":["rapideinternet/exposia-bakkuclient"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rapideinternet/Exposia-BakkuClient","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rapideinternet%2FExposia-BakkuClient","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rapideinternet%2FExposia-BakkuClient/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rapideinternet%2FExposia-BakkuClient/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rapideinternet%2FExposia-BakkuClient/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rapideinternet","download_url":"https://codeload.github.com/rapideinternet/Exposia-BakkuClient/tar.gz/refs/heads/stable","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rapideinternet%2FExposia-BakkuClient/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32451476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"ssl_error","status_checked_at":"2026-04-29T22:10:49.234Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bakku","blade","cms","html","laravel"],"created_at":"2025-02-07T05:18:54.363Z","updated_at":"2026-04-30T01:37:02.000Z","avatar_url":"https://github.com/rapideinternet.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\" style=\"display: flex; gap: 50px; margin: 50px auto 50px auto; justify-content: center;\"\u003e\n\u003ca href=\"https://admin.bakku.cloud\" target=\"_blank\"\u003e\u003cimg src=\"https://admin.bakku.cloud/img/logo-bakku-8285dc3fbbae923c5dd447120ec7e5aa.svg?vsn=d\" width=\"250\" alt=\"Bakku Logo\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## About BakkuClient\nBakkuClient is a simple client for the Bakku API. Easily create a website with the Bakku API.\n\n\u003chr\u003e\n\n## Features\n- [x] Pages\n- [x] Components\n- [x] Forms\n- [x] Caching\n- [x] Error handling\n- [x] Fully customizable\n\n\u003chr\u003e\n\n## Usage\nFirst register your website on Bakku. Then generate a api_key for your website.\n\n#### 1. Fill in the BAKKU_SITE_ID and BAKKU_API_KEY in the .env file\n```bash\nBAKKU_SITE_ID={{YOUR_SITE_ID}}\nBAKKU_API_KEY={{YOUR_API_KEY}}\n```\n\n#### 2. Create or edit the pages in /resources/views/pages/\n\n#### 3. To include images use the following code\n```html\n\u003cx-media :id=\"$block['fields']['image']\" /\u003e\n```\n\n#### 4. To include a collection use the following code\n```html\n\u003cx-collections :type=\"'{{COLLECTION_TYPE}}'\" :limit=\"{{LIMIT}}\" /\u003e\n```\n\n#### 5. To change the collections open the /app/View/Components/Collections.php file and change the collections\n\n#### 6.To include the menu use the following code\n```html\n\u003cx-menu slug=\"{{ $slug }}\" /\u003e\n```\n\n#### 7. Create or edit the components in /resources/views/components/, if you need an extra component use\n```bash\nphp artisan make:component {{ComponentName}}\n```\n\n#### 8. To create blocks use the following command\n````bash\nphp artisan make:view blocks/{{BlockName}}\n````\n\n#### 9. To include a block use the following code\n```php\n@foreach($blocks as $block)\n    @include('blocks.'.$block['label'], ['block' =\u003e $block])\n@endforeach\n```\n\n#### 10. To create a page use the following command\n```bash\nphp artisan make:view pages/{{PageName}}\n```\n\u003chr\u003e\n\n## Installation\n\n#### 1. Fork the repository\n\n#### 2. Clone the repository\n```bash\ngit clone https://github.com/rapideinternet/{{REPO_NAME}}.git\n```\n\n#### 3. Go to the project directory\n```bash\ncd {{REPO_NAME}}\n```\n\n#### 4. Install composer dependencies\n```bash\ncomposer install\n```\n\n#### 5. Copy the .env.example file and rename it to .env\n```bash\ncp .env.example .env\n```\n\n#### 6. Generate a new application key\n```bash\nphp artisan key:generate\n```\n\n#### 7. Run the migrations\n```bash\nphp artisan migrate\n```\n\n#### 8. Install npm dependencies\n```bash\nnpm install\n```\n\n#### 9. Compile the assets\n```bash\nnpm run build\n```\n\n#### 10. Run the application\n```bash\nphp artisan serve\n```\n\n\u003chr\u003e\n\n## License\nThis client is made by Exposia and is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frapideinternet%2Fexposia-bakkuclient","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frapideinternet%2Fexposia-bakkuclient","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frapideinternet%2Fexposia-bakkuclient/lists"}