{"id":14974979,"url":"https://github.com/mohmmedashraf/nova-fields-agent","last_synced_at":"2025-08-02T21:16:29.690Z","repository":{"id":57034180,"uuid":"228988923","full_name":"MohmmedAshraf/nova-fields-agent","owner":"MohmmedAshraf","description":"This field gives the ability to hide fields from your resources table on mobile screens for a better responsive concept","archived":false,"fork":false,"pushed_at":"2024-10-14T11:41:58.000Z","size":2649,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-25T07:53:52.335Z","etag":null,"topics":["laravel","laravel-framework","laravel-nova","laravel-package","laravel8","nova","php"],"latest_commit_sha":null,"homepage":"https://twitter.com/M7ammed_Ashraf","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/MohmmedAshraf.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2019-12-19T06:22:18.000Z","updated_at":"2024-10-14T11:42:02.000Z","dependencies_parsed_at":"2022-08-24T14:10:50.449Z","dependency_job_id":null,"html_url":"https://github.com/MohmmedAshraf/nova-fields-agent","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/MohmmedAshraf/nova-fields-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmmedAshraf%2Fnova-fields-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmmedAshraf%2Fnova-fields-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmmedAshraf%2Fnova-fields-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmmedAshraf%2Fnova-fields-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MohmmedAshraf","download_url":"https://codeload.github.com/MohmmedAshraf/nova-fields-agent/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MohmmedAshraf%2Fnova-fields-agent/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268455692,"owners_count":24253174,"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-08-02T02:00:12.353Z","response_time":74,"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":["laravel","laravel-framework","laravel-nova","laravel-package","laravel8","nova","php"],"created_at":"2024-09-24T13:51:20.877Z","updated_at":"2025-08-02T21:16:29.662Z","avatar_url":"https://github.com/MohmmedAshraf.png","language":"PHP","funding_links":["https://www.buymeacoffee.com/outhebox","https://www.patreon.com/m_ashraf"],"categories":[],"sub_categories":[],"readme":"# Laravel Nova Fields Agent\n[![GitHub license](https://img.shields.io/github/license/MohmmedAshraf/nova-fields-agent.svg)](https://github.com/MohmmedAshraf/nova-fields-agent/blob/master/LICENSE.md)\n[![GitHub issues](https://img.shields.io/github/issues/MohmmedAshraf/nova-fields-agent.svg)](https://github.com/MohmmedAshraf/nova-fields-agent/issues)\n[![Total Downloads](https://poser.pugx.org/outhebox/nova-fields-agent/downloads)](https://packagist.org/packages/outhebox/nova-fields-agent)\n\n\n\n\n## Description\nThis field give the ability to hide fields from your resources table on mobile screens for a better responsive concept.\n\n## Support\n\n[\u003cimg src=\"https://outhebox-github-ads.s3.us-east-1.amazonaws.com/nova-fields-agent.jpg?t=1\" width=\"419px\" /\u003e](https://outhebox.dev/github-ad-click/nova-fields-agent).\n\nThank you for considering supporting the development of this package! If you'd like to contribute, you can buy me a coffee or sponsor me to help keep me motivated to continue improving this package. You can also support the project by starring ⭐ the repository.\n\nTo buy me a coffee, click the button below:\n\n\u003ca href=\"https://www.buymeacoffee.com/outhebox\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" alt=\"Buy Me A Coffee\" style=\"height: 51px !important;width: 217px !important;\" \u003e\u003c/a\u003e\n\n## Screenshots\n![Screenshot](screenshot.gif)\n\n## Installation\nThis package can be installed through Composer.\n```bash\ncomposer require outhebox/nova-fields-agent\n```\n\n## Example Usage\nNote: All Fields Supported \"Text Field only for example\".\n\n```php\n// Important !!!\nuse Outhebox\\NovaFieldsAgent\\HasNovaFieldsAgent;\n\nclass Example extends Resource\n{\n    use HasNovaFieldsAgent; // Important !!!\n\n    /**\n     * Get the fields displayed by the resource.\n     *\n     * @param  \\Illuminate\\Http\\Request  $requestµµ\n     * @return array\n     */\n    public function fields(Request $request)\n    {\n        Text::make('ExampleField')\n            -\u003ehideFromDetailOnMobile() // Hide the field from details page on Mobile\n            -\u003ehideFromDetailOnTablet() // Hide the field from details page on Tablet\n            -\u003eHideFromIndexOnMobile() // Hide the field from index on Mobile\n            -\u003eHideFromIndexOnTablet() // Hide the field from index on Tablet\n            -\u003esortable(),\n    }\n}\n```\n\n## License\nLaravel Nova Fields Agent is licensed under [The MIT License (MIT)](LICENSE.md) .\n\n## Donate\nIf you like this package, you can show your appreciation 💜 by [donating any amount via Patreon](https://www.patreon.com/m_ashraf) to support ongoing development.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohmmedashraf%2Fnova-fields-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmohmmedashraf%2Fnova-fields-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmohmmedashraf%2Fnova-fields-agent/lists"}