{"id":21103007,"url":"https://github.com/technobureau/ui","last_synced_at":"2025-09-16T09:58:16.734Z","repository":{"id":57066147,"uuid":"385030941","full_name":"TechnoBureau/ui","owner":"TechnoBureau","description":"Laravel Based UI","archived":false,"fork":false,"pushed_at":"2021-08-07T17:26:45.000Z","size":161,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T18:57:27.182Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/TechnoBureau.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-11T19:01:51.000Z","updated_at":"2021-08-07T17:26:48.000Z","dependencies_parsed_at":"2022-08-24T14:53:59.794Z","dependency_job_id":null,"html_url":"https://github.com/TechnoBureau/ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TechnoBureau/ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechnoBureau%2Fui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechnoBureau%2Fui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechnoBureau%2Fui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechnoBureau%2Fui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TechnoBureau","download_url":"https://codeload.github.com/TechnoBureau/ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TechnoBureau%2Fui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275399643,"owners_count":25457782,"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","status":"online","status_checked_at":"2025-09-16T02:00:10.229Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-19T23:57:25.642Z","updated_at":"2025-09-16T09:58:16.713Z","avatar_url":"https://github.com/TechnoBureau.png","language":"PHP","readme":"# TechnoBureau UI\n\n\u003ca href=\"https://packagist.org/packages/TechnoBureau/ui\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/TechnoBureau/ui\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/TechnoBureau/ui\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/TechnoBureau/ui\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/TechnoBureau/ui\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/TechnoBureau/ui\" alt=\"License\"\u003e\u003c/a\u003e\n\n## This legacy package is a very simple authentication scaffolding built on the Bootstrap CSS framework. While it continues to work with the latest version of Laravel.\n\n## Introduction\n\nWhile Laravel does not dictate which JavaScript or CSS pre-processors you use, it does provide a basic starting point using [Bootstrap](https://getbootstrap.com/), and / or [Vue](https://vuejs.org/) that will be helpful for many applications. By default, Laravel uses [NPM](https://www.npmjs.org/) to install both of these frontend packages.\n\n## Official Documentation\n\n### Supported Versions\n\nOnly the latest major version of TechnoBureau UI receives bug fixes. The table below lists compatible Laravel versions:\n\n| Version | Laravel Version |\n|---- |----|\n| [1.x](https://github.com/TechnoBureau/ui/tree/1.x) | 8.x |\n\n### Installation\n\nThe Bootstrap and Vue scaffolding provided by TechnoBureau is located in the `technobureau/ui` Composer package, which may be installed using Composer:\n\n```bash\ncomposer require technobureau/ui\n```\n\nBefore executing this ui command execute default laravel/ui command to generate basic authentication scaffolding.\n```bash\nphp artisan ui bootstrap --auth\n```\n\nOnce the `technobureau/ui` package has been installed, you may install the frontend scaffolding using the `ui` Artisan command:\n\n```bash\n// Generate basic scaffolding...\nphp artisan ui technobureau\n\n// Generate login / registration scaffolding...\nphp artisan ui technobureau --auth\n\n```\n\nThis package are depended on few vendor package, so execute below command to publish configuration file related to that package. Please make sure entered as 0 as input when publish command ask for provider or tag\n```bash\nphp artisan vendor:publish\n```\n\n#### CSS\n\n[Laravel Mix](https://laravel.com/docs/mix) provides a clean, expressive API over compiling SASS or Less, which are extensions of plain CSS that add variables, mixins, and other powerful features that make working with CSS much more enjoyable. In this document, we will briefly discuss CSS compilation in general; however, you should consult the full [Laravel Mix documentation](https://laravel.com/docs/mix) for more information on compiling SASS or Less.\n\n#### JavaScript\n\nLaravel does not require you to use a specific JavaScript framework or library to build your applications. In fact, you don't have to use JavaScript at all. However, Laravel does include some basic scaffolding to make it easier to get started writing modern JavaScript using the [Vue](https://vuejs.org) library. Vue provides an expressive API for building robust JavaScript applications using components. As with CSS, we may use Laravel Mix to easily compile JavaScript components into a single, browser-ready JavaScript file.\n\n### Writing CSS\n\nAfter installing the `technobureau/ui` Composer package and [generating the frontend scaffolding](#introduction), Laravel's `package.json` file will include the `bootstrap` package to help you get started prototyping your application's frontend using Bootstrap. However, feel free to add or remove packages from the `package.json` file as needed for your own application. You are not required to use the Bootstrap framework to build your Laravel application - it is provided as a good starting point for those who choose to use it.\n\nBefore compiling your CSS, install your project's frontend dependencies using the [Node package manager (NPM)](https://www.npmjs.org):\n\n```bash\nnpm install\n```\n\nOnce the dependencies have been installed using `npm install`, you can compile your SASS files to plain CSS using [Laravel Mix](https://laravel.com/docs/mix#working-with-stylesheets). The `npm run prod` command will process the instructions in your `webpack.mix.js` file. Typically, your compiled CSS will be placed in the `public/css` directory:\n\n```bash\nnpm run prod\n```\n\nThe `webpack.mix.js` file included with Laravel's frontend scaffolding will compile the `resources/sass/technobureau.scss` SASS file. This `technobureau.scss` file imports a file of SASS variables and loads Bootstrap, which provides a good starting point for most applications. Feel free to customize the `technobureau.scss` file however you wish or even use an entirely different pre-processor by [configuring Laravel Mix](https://laravel.com/docs/mix).\n\n### Writing JavaScript\n\nAll of the JavaScript dependencies required by your application can be found in the `package.json` file in the project's root directory. This file is similar to a `composer.json` file except it specifies JavaScript dependencies instead of PHP dependencies. You can install these dependencies using the [Node package manager (NPM)](https://www.npmjs.org):\n\n```bash\nnpm install\n```\n\n\u003e By default, the Laravel `package.json` file includes a few packages such as `lodash` and `axios` to help you get started building your JavaScript application. Feel free to add or remove from the `package.json` file as needed for your own application.\n\nOnce the packages are installed, you can use the `npm run prod` command to [compile your assets](https://laravel.com/docs/mix). Webpack is a module bundler for modern JavaScript applications. When you run the `npm run prod` command, Webpack will execute the instructions in your `webpack.mix.js` file:\n\n```bash\nnpm run prod\n```\n\nBy default, the Laravel `webpack.mix.js` file compiles your SASS and the `resources/js/technobureau.js` file. Within the `technobureau.js` file you may register your Vue components or, if you prefer a different framework, configure your own JavaScript application. Your compiled JavaScript will typically be placed in the `public/js` directory.\n\n\u003e The `technobureau.js` file will load the `resources/js/bootstrap.js` file which bootstraps and configures Vue, Axios, jQuery, and all other JavaScript dependencies and `resources/js/bootstrap-select.js` for beautiful select drop down with search option. If you have additional JavaScript dependencies to configure, you may do so in this file.\n\n## License\n\nLaravel UI is open-sourced software licensed under the [MIT license](LICENSE.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnobureau%2Fui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechnobureau%2Fui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnobureau%2Fui/lists"}