{"id":14974388,"url":"https://github.com/wingsline/inuitcss","last_synced_at":"2025-10-27T08:31:21.459Z","repository":{"id":7652969,"uuid":"9013839","full_name":"wingsline/inuitcss","owner":"wingsline","description":"inuit.css helpers and pagination for Laravel 4","archived":false,"fork":false,"pushed_at":"2015-01-29T16:44:42.000Z","size":223,"stargazers_count":10,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-01T04:31:34.581Z","etag":null,"topics":["inuitcss","laravel4"],"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/wingsline.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":"2013-03-25T19:15:42.000Z","updated_at":"2024-01-17T15:48:55.000Z","dependencies_parsed_at":"2022-08-23T16:50:45.849Z","dependency_job_id":null,"html_url":"https://github.com/wingsline/inuitcss","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingsline%2Finuitcss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingsline%2Finuitcss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingsline%2Finuitcss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingsline%2Finuitcss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wingsline","download_url":"https://codeload.github.com/wingsline/inuitcss/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238463789,"owners_count":19476774,"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":["inuitcss","laravel4"],"created_at":"2024-09-24T13:50:29.589Z","updated_at":"2025-10-27T08:31:21.044Z","avatar_url":"https://github.com/wingsline.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Wingsline/inuitcss\n\n[inuit.css](http://inuitcss.com/) html, form helpers and pagination for [Laravel 4](http://laravel.com)\n\n\n### Requirements\n\n- PHP 5.3+\n- Laravel 4.1\n\n\n### Installation\n\nWingsline/inuitcss is available on Packagist ([wingsline/inuitcss](http://packagist.org/packages/wingsline/inuitcss))\nand as such installable via [Composer](http://getcomposer.org/).\n\nIf you do not use Composer, you can grab the code from GitHub, and use any\nPSR-0 compatible autoloader (e.g. the [Symfony2 ClassLoader component](https://github.com/symfony/ClassLoader))\nto load Wingsline/Inuitcss classes.\n\n\n### Form elements\n\nIn order to use inuitcss styled form elements replace the following alias in the app/config/app.php:\n\n\t'Form'            =\u003e 'Illuminate\\Support\\Facades\\Form'\n\t\nwith\n\n\t'Form'            =\u003e 'Wingsline\\Inuitcss\\Facades\\Form'\n\t\n\t\nSo when in example you call Form::text() a text field will be generated, BUT the text field will have the\n```text-input``` class added to it automatically.\n\nCurrently the following elements will have the text-input added to it: \n\n- Form::text()\n- Form::password()\n- Form::email()\n- Form::textarea()\n\nAlso there is a Form::extraHelp() available to add help text displayed after a field when that field is in focus (see [forms](http://jsfiddle.net/inuitcss/MhHHU/)):\n\n\tForm::extraHelp('.edu emails only')\n\t\n\n#### Highlight label in case of a validation error\n\nYou can also highlight a label of an input element when a validation error occurs. Simply add the $errors from the view into the Form::open().\n\n\t\n\tForm::open(array('errors' =\u003e $errors))\n\t\n\t\nThe default css class is `error`, but if you want to change that add the errors like this:\n\n\t\n\tForm::open(array('errors' =\u003e array($errors, 'mycustomclass')))\n\t\n\n### Pagination\n\nAfter installation add the Wingsline/InuitcssServiceProvider to the config/app.php's service providers:\n\t\n\t'Wingsline\\Inuitcss\\InuitcssServiceProvider'\n\t\t\n\t\t\nthen change the config/view.php `pagination` value to one of the following views:\n\n\n\n#### slider:\n\nShow the most links with text labels\n\n \t'pagination' =\u003e 'inuitcss::pagination.slider'\n \t\t\n\n![slider](https://dl.dropboxusercontent.com/s/fpkhx4d61na00eb/slider.png?dl=1\u0026token_hash=AAFxt1xUEg-0q18nwFf7rDdVjBi8UExPdX-WV0seZycQGQ \"slider\")\n\n\n#### simpleslider:\n\nShows the slider pagination except the first and last page links\n\n\t'pagination' =\u003e 'inuitcss::pagination.simpleslider'\n\n\n![simpleslider](https://dl.dropboxusercontent.com/s/bd1qvwmmr1q1k9o/simpleslider.png?dl=1\u0026token_hash=AAG5esM_uAbjE2JpXGG7FtB-DLR8SfpyQpTZ0or0G6xS8w \"simpleslider\")\n\n\n#### slidernotext:\n\nShows the slider but without text labels\n\n\t'pagination' =\u003e 'inuitcss::pagination.slidernotext'\n\n\n![slidernotext](https://dl.dropboxusercontent.com/s/4z2d6hacmw9k235/slidernotext.png?dl=1\u0026token_hash=AAFrFAeKfbKAVKE_-63UsYjmR02_cxvlVu-xB50c1v7tTQ \"slidernotext\")\n\n\n#### simple\n\nJust the basic previous and next links.\n\n\t'pagination' =\u003e 'inuitcss::pagination.simple'\n\n\n![simpleslider](https://dl.dropboxusercontent.com/s/hdahh1x0w3mrtk3/simple.png?dl=1\u0026token_hash=AAE5ipqbHZPOZpQaK-Of-H4hr9yuatYxV_TwztsMuQekiA \"slider\")\n\n\n### Language\n\nThe language keys for the pagination (```app/lang/en/pagination.php```) should look similar to this:\n\n\t\u003c?php \n\n\treturn array(\n\t\n\t\t'previous' =\u003e '\u0026lsaquo; Previous',\n\n\t    'next'     =\u003e 'Next \u0026rsaquo;',\n\n\t    'first'    =\u003e 'First',\n\n\t    'last'     =\u003e 'Last',\n\t    \n    );\n    \n \n\n### License\n\nWingsline/Inuitcss is open-sourced software license under the [MIT license](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingsline%2Finuitcss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwingsline%2Finuitcss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingsline%2Finuitcss/lists"}