{"id":21696672,"url":"https://github.com/patrickcurl/mod-blog","last_synced_at":"2026-05-18T17:40:24.595Z","repository":{"id":152635530,"uuid":"202630502","full_name":"patrickcurl/mod-blog","owner":"patrickcurl","description":"ModBlog a Modularized Blog Module For Laravel and Laravel-Modules","archived":false,"fork":false,"pushed_at":"2019-08-18T00:50:56.000Z","size":24072,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-25T14:12:03.570Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patrickcurl.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","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":"2019-08-16T00:34:35.000Z","updated_at":"2019-08-18T00:50:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"4b2c91aa-c260-48a1-960d-392bc2413590","html_url":"https://github.com/patrickcurl/mod-blog","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickcurl%2Fmod-blog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickcurl%2Fmod-blog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickcurl%2Fmod-blog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patrickcurl%2Fmod-blog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patrickcurl","download_url":"https://codeload.github.com/patrickcurl/mod-blog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244636437,"owners_count":20485442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-25T19:21:17.381Z","updated_at":"2026-05-18T17:40:19.548Z","avatar_url":"https://github.com/patrickcurl.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"This creates a medium-esque blog modelled after Canvas : https://cnvs.io but using [Nwidart/Laravel-Modules](https://github.com/nwidart/laravel-modules). \n\n\u003cp align=\"center\"\u003e\n    \u003cbr\u003e\n    \u003ch2\u003eModBlog a Modularized Blog Module\u003c/h2\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://travis-ci.org/patrickcurl/mod-blog\"\u003e\u003cimg src=\"https://travis-ci.org/patrickcurl/mod-blog.svg?branch=master\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/patrickcurl/mod-blog\"\u003e\u003cimg src=\"https://poser.pugx.org/patrickcurl/mod-blog/downloads\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/patrickcurl/mod-blog\"\u003e\u003cimg src=\"https://poser.pugx.org/patrickcurl/mod-blog/v/stable\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://packagist.org/packages/patrickcurl/mod-blog\"\u003e\u003cimg src=\"https://poser.pugx.org/patrickcurl/mod-blog/license\"\u003e\u003c/a\u003e\n    \u003cbr\u003e\u003cbr\u003e\n\u003c/p\u003e\n\n## Introduction\n\nA [Laravel](https://laravel.com) publishing platform. ModBlog is a fully open source package to extend your \napplication and get you up-and-running with a blog in just a few minutes. In addition to a distraction-free \nwriting experience, you can view monthly trends on your content, get insights into reader traffic and more!\n\n## Installation\n\n\u003e **Note:** ModBlog requires you to have user authentication in place prior to installation. You may run the `make:auth` Artisan command to satisfy this requirement.\n\nYou may use composer to install ModBlog into your Laravel project:\n\n```bash\ncomposer require patrickcurl/mod-blog\n```\n\nCreate a symbolic link to ensure file uploads are publicly accessible from the web using the `storage:link` Artisan command:\n\n```bash\nphp artisan storage:link\n```\n\n## Configuration\n\n\u003e **Note:** The following steps are optional configurations, you are not required to complete them.\n\nIf you want to include [Unsplash](https://unsplash.com) images in your post content, set up a new application at [https://unsplash.com/oauth/applications](https://unsplash.com/oauth/applications). Grab your access key and update `config/modules/blog.php`:\n\n```php\n'unsplash' =\u003e [\n    'access_key' =\u003e env('MODBLOG_UNSPLASH_ACCESS_KEY'),\n],\n```\n\n**Want a weekly summary?** ModBlog provides support for a weekly e-mail that gives you quick stats of the content you've authored, delivered straight to your inbox. Once your application is [configured for sending mail](https://laravel.com/docs/5.8/mail), update `config/modules/blog.php`:\n\n```php\n'mail' =\u003e [\n    'enabled' =\u003e env('MODBLOG_MAIL_ENABLED', false),\n],\n```\n\nSince the weekly digest runs on [Laravel's Scheduler](https://laravel.com/docs/5.8/scheduling#introduction), you'll need to add the following cron entry to your server:\n\n```bash\n* * * * * cd /path-to-your-project \u0026\u0026 php artisan schedule:run \u003e\u003e /dev/null 2\u003e\u00261\n```\n\n## Updates\n\nYou may update your ModBlog installation using composer:\n\n```bash\ncomposer update\n```\n\nRun any new migrations using the `migrate` Artisan command:\n\n```bash\nphp artisan migrate\n```\n\n## Testing\n\nRun the tests with:\n\n```bash\ncomposer test\n```\n\n## License\n\nModBlog is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).\n\n## Credits\n\n- [The team](https://github.com/orgs/cnvs/people) that continues to support and develop this project\n- Thanks to [Todd Austin](https://cnvs.io/) and his project [Canvas](https://github.com/cnvs/canvas) for inspring much of the design\n- Thanks to [Mohamed Said](https://themsaid.com/) and his project [Wink](https://github.com/writingink/wink) for inspring much of the design\n- Anyone who has [contributed a patch](https://github.com/patrickcurl/mod-blog/pulls) or [made a helpful suggestion](https://github.com/patrickcurl/mod-blog/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickcurl%2Fmod-blog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatrickcurl%2Fmod-blog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatrickcurl%2Fmod-blog/lists"}