{"id":18722248,"url":"https://github.com/muetze42/example-app-3dq64q","last_synced_at":"2026-04-12T10:44:51.014Z","repository":{"id":64464557,"uuid":"575536187","full_name":"Muetze42/example-app-3dq64q","owner":"Muetze42","description":"Laravel 9 Example App","archived":false,"fork":false,"pushed_at":"2022-12-13T21:07:52.000Z","size":3643,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-17T03:33:58.974Z","etag":null,"topics":["example-app","inertiajs","inertiajs-vue","laravel","laravel-example","laravel-medialibrary","laravel-nova","laravel-permissions","laravel-sanctum","laravel9","php","php-rest-api","php8","tailwindcss","tailwindcss-v3","vite","vue3"],"latest_commit_sha":null,"homepage":"https://huth.it","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/Muetze42.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}},"created_at":"2022-12-07T18:23:40.000Z","updated_at":"2024-04-18T10:27:45.000Z","dependencies_parsed_at":"2023-01-02T01:30:14.653Z","dependency_job_id":null,"html_url":"https://github.com/Muetze42/example-app-3dq64q","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Muetze42%2Fexample-app-3dq64q","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Muetze42%2Fexample-app-3dq64q/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Muetze42%2Fexample-app-3dq64q/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Muetze42%2Fexample-app-3dq64q/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Muetze42","download_url":"https://codeload.github.com/Muetze42/example-app-3dq64q/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239587243,"owners_count":19663892,"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":["example-app","inertiajs","inertiajs-vue","laravel","laravel-example","laravel-medialibrary","laravel-nova","laravel-permissions","laravel-sanctum","laravel9","php","php-rest-api","php8","tailwindcss","tailwindcss-v3","vite","vue3"],"created_at":"2024-11-07T13:40:39.653Z","updated_at":"2025-11-11T04:30:19.473Z","avatar_url":"https://github.com/Muetze42.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Example App\n\nExample [Laravel 9](https://laravel.com/docs/9.x/) app\n\n## Installation\n\n### System\n\n#### Copy `.env.example` to `.env`.\n\n#### **Recommended**: Set a Nova licence key in the .env file:\n\n```dotenv\nNOVA_LICENSE_KEY=xyz\n```\n\n#### Install requirements\n\n```shell\ncomposer install\n```\n\n#### Building und starting Docker container\n\n```shell\n./vendor/bin/sail up -d\n```\n\n#### Generate App Key\n\n```shell\nphp artisan key:generate\n```\n\n#### Link Storage\n\n```shell\nphp artisan storage:link\n```\n\n#### Migrate database and seed example data\n\n**! Using database Artisan commands in the Laravel Docker Container !**\n\n```shell\nphp artisan migrate:fresh --seed\n```\n\n### Public Page\n\n#### Install node requirements\n\n```shell\nnpm i\n```\n\n#### Run one time production\n\n```shell\nnpm run build\n```\n\n## Update after pull\n\n```shell\ncomposer install\n```\n\n**! Using database Artisan commands in the Laravel Docker Container !**\n\n```shell\nphp artisan migrate\n```\n\n**Clear Browser Cache**\n\n## Informationen\n\n* Admin Account: `admin@example.app`\n* Password for every seeded account: `password`\n* Public Page: http://localhost (Get Server Error without run one time npm prod)\n* Administration: http://localhost/admin\n* API: http://localhost/api (Postman Collection: [example-app.postman-collection.json](example-app.postman_collection.json))\n* API Authentication is made possible with [Laravel Sanctum](https://laravel.com/docs/9.x/sanctum)\n\n### A small overview\n\n* Models `Article` \u0026 `Comment` using [Soft Deleting](https://laravel.com/docs/9.x/eloquent#soft-deleting)\n* Model `User` have a [„One To Many“](https://laravel.com/docs/9.x/eloquent-relationships#one-to-many) relation to `Article` \u0026 `Story` Models\n* Model `User` have a nullable [„One To Many“](https://laravel.com/docs/9.x/eloquent-relationships#one-to-many) relation to `Comment` Model\n* Model `Comment` have a [„One To Many (Polymorphic)“](https://laravel.com/docs/9.x/eloquent-relationships#one-to-many-polymorphic-relations) relation to `Article` \u0026 `Story` Models\n* Models `Article` \u0026 `Story` have tags by using [Laravel-tags by Spatie](https://spatie.be/docs/laravel-tags/v4/introduction)\n* Model activities will be logged with [Laravel-activitylog by Spatie](https://spatie.be/docs/laravel-activitylog/v4)\n* Activity API index with filter options\n* A small playground with roles and permissions. See [RoleSeeder](database/seeders/RoleSeeder.php)\n* Seeder: Every user with a role and 50% of users without a role have an Avatar\n* Fallback image for user Avatar\n\n### Packages\n\n* [Laravel Nova 4](https://nova.laravel.com/)\n* [Inertia.js](https://inertiajs.com/)\n* [Laravel-tags by Spatie](https://spatie.be/docs/laravel-tags/v4)\n* [norman-huth/api-controller](https://github.com/Muetze42/api-controller)\n* [Laravel-activitylog by Spatie](https://spatie.be/docs/laravel-activitylog/v4)\n* [Laravel-medialibrary by Spatie](https://spatie.be/docs/laravel-medialibrary/v10)\n* [Laravel-permission by Spatie](https://spatie.be/docs/laravel-permission/v5)\n* [dmitrybubyakin/nova-medialibrary-field](https://github.com/dmitrybubyakin/nova-medialibrary-field) (Nova Article)\n* [ebess/advanced-nova-media-library](https://github.com/ebess/advanced-nova-media-library) (Nova User)\n\nFor Frontend Assets:\n\n* [Vite](https://vitejs.dev/) + [Laravel Vite Plugin](https://laravel.com/docs/9.x/vite)\n* [Tailwind CSS](https://tailwindcss.com/)\n* [Vue.js 3](https://vuejs.org/)\n* [Headless UI](https://headlessui.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuetze42%2Fexample-app-3dq64q","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmuetze42%2Fexample-app-3dq64q","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmuetze42%2Fexample-app-3dq64q/lists"}