{"id":31049338,"url":"https://github.com/timbroddin/bauhaus","last_synced_at":"2026-01-20T18:05:42.111Z","repository":{"id":19366830,"uuid":"22606909","full_name":"TimBroddin/bauhaus","owner":"TimBroddin","description":"Admin Generator - The missing Laravel 4 Admin Generator","archived":false,"fork":false,"pushed_at":"2020-03-14T17:01:37.000Z","size":8283,"stargazers_count":0,"open_issues_count":1,"forks_count":16,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T22:16:05.361Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://bauhaus.krafthaus.nl/","language":"CSS","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TimBroddin.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}},"created_at":"2014-08-04T14:20:52.000Z","updated_at":"2021-03-19T02:45:51.000Z","dependencies_parsed_at":"2022-09-02T18:22:34.257Z","dependency_job_id":null,"html_url":"https://github.com/TimBroddin/bauhaus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TimBroddin/bauhaus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimBroddin%2Fbauhaus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimBroddin%2Fbauhaus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimBroddin%2Fbauhaus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimBroddin%2Fbauhaus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimBroddin","download_url":"https://codeload.github.com/TimBroddin/bauhaus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimBroddin%2Fbauhaus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28608045,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":[],"created_at":"2025-09-14T21:52:53.107Z","updated_at":"2026-01-20T18:05:42.106Z","avatar_url":"https://github.com/TimBroddin.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bauhaus - The missing Laravel 4 Admin Generator\n---\n\n[![Build Status](https://api.travis-ci.org/krafthaus/bauhaus.svg?branch=master)](https://travis-ci.org/krafthaus/bauhaus)\n[![Total Downloads](https://poser.pugx.org/krafthaus/bauhaus/downloads.png)](https://packagist.org/packages/krafthaus/bauhaus)\n[![License](https://poser.pugx.org/krafthaus/bauhaus/license.png)](https://packagist.org/packages/krafthaus/bauhaus)\n[![Code Climate](https://codeclimate.com/github/krafthaus/bauhaus.png)](https://codeclimate.com/github/krafthaus/bauhaus)\n\nBauhaus is an admin generator / builder / interface for [Laravel](http://laravel.com) with scoping, exporting and filtering functionality.\nWith Bauhaus you can easily create visual stunning lists, forms and filters for your models.\n\nUse Bauhaus if you want:\n- Create list and forms easily tightly coupled on your models\n- A nice and clean admin interface\n- and much, much more\n\nBauhaus is currently available in the following languages:\n- English\n- Brazilian (Thanks [willmkt](https://github.com/willmkt))\n- Dutch\n\n\u003e Warning: Right now, Bauhaus is a moving target. Every day new changes will be pushed possibly breaking the design and/or inner workings. If you're having trouble running this package, please consider running the `php artisan asset:publish krafthaus/bauhaus` and/or the `php artisan config:publish krafthaus/bauhaus` command. Thank you!\n\n[Documentation is located here.](http://bauhaus.krafthaus.nl)\n\n![Bauhaus List](https://raw.githubusercontent.com/krafthaus/bauhaus/gh-pages/screenshots/list.png)\n![Bauhaus Form](https://raw.githubusercontent.com/krafthaus/bauhaus/gh-pages/screenshots/form.png)\n\nInstallation\n---\nAdd bauhaus to your composer.json file:\n```\n\"require\": {\n\t\"krafthaus/bauhaus\": \"dev-master\"\n}\n```\n\nUse composer to install this package.\n```\n$ composer update\n```\n\n### Registering the package\n```php\n'providers' =\u003e array(\n\t// ...\n\t'KraftHaus\\Bauhaus\\BauhausServiceProvider',\n\t'Intervention\\Image\\ImageServiceProvider',\n)\n```\n\nAdd the `admin` folder to the `app/` directory and put the following line in your composer.json file:\n```\n\"autoload\": {\n\t\"classmap\": [\n\t\t\"app/admin\"\n\t]\n},\n```\n\nThen publish the config file with `php artisan config:publish krafthaus/bauhaus`.\nThis will add the main bauhaus config file in your application config directory.\n\nAnd last but not least you need to publish to package's assets with the `php artisan asset:publish krafthaus/bauhaus` command.\n\nCreating your first Bauhaus model\n---\nTo build your first (and most exciting) admin controller you'll have to follow the following easy steps:\n\nRun `$ php artisan bauhaus:scaffold --model=name` where `name` is the name of the model you want to use.\n\nThis will create 3 files:\n- A new (empty) model in `app/models/YourModelName`.\n- A new migration in the `app/database/migrations` directory.\n- And ofcourse a Baushaus model file in `app/admin`.\n\nSupport\n---\nHave a bug? Please create an issue here on GitHub that conforms with [necolas's guidelines](https://github.com/necolas/issue-guidelines).\n\nLicense\n---\nThis package is available under the [MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimbroddin%2Fbauhaus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimbroddin%2Fbauhaus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimbroddin%2Fbauhaus/lists"}