{"id":44855407,"url":"https://github.com/rezgui/laravel-livetinker","last_synced_at":"2026-02-17T07:53:53.341Z","repository":{"id":62535270,"uuid":"398366506","full_name":"rezgui/laravel-livetinker","owner":"rezgui","description":"Laravel-live-tinker allows you to live debug/test small parts of your Laravel application from the browser page [(cloned from erjanmx/laravel-live-tinker)](https://github.com/erjanmx/laravel-live-tinker)","archived":false,"fork":false,"pushed_at":"2021-08-20T18:51:24.000Z","size":296,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-05T20:04:01.837Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/rezgui.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":"2021-08-20T18:22:40.000Z","updated_at":"2021-08-20T18:51:26.000Z","dependencies_parsed_at":"2022-11-02T15:16:33.484Z","dependency_job_id":null,"html_url":"https://github.com/rezgui/laravel-livetinker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rezgui/laravel-livetinker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rezgui%2Flaravel-livetinker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rezgui%2Flaravel-livetinker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rezgui%2Flaravel-livetinker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rezgui%2Flaravel-livetinker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rezgui","download_url":"https://codeload.github.com/rezgui/laravel-livetinker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rezgui%2Flaravel-livetinker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29536934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T05:00:25.817Z","status":"ssl_error","status_checked_at":"2026-02-17T04:57:16.126Z","response_time":100,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2026-02-17T07:53:52.235Z","updated_at":"2026-02-17T07:53:53.330Z","avatar_url":"https://github.com/rezgui.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel-livetinker\n\nLaravel-livetinker allows you to live debug/test small parts of your Laravel application from the browser page [(cloned from erjanmx/laravel-live-tinker)](https://github.com/erjanmx/laravel-live-tinker)\n\n![Imgur](https://i.imgur.com/DRXevEn.png)\n\n[Laravel's tinker command](https://github.com/laravel/tinker) allows to run any code you want as if you are inside your Laravel app. \n\nBut what if you want to debug some part of your code, you must start up tinker, type the code, press enter, and quit tinker and everytime you make change in your code you have to run tinker all over again\n\nThis package helps you to run any line of code in your Laravel app environment in your favorite browser tab. No tinker launching, no typing or searching previously typed code.\n\n\n## Installation\n\nYou can install the package via composer\n\n\u003e Install only in your dev-environment\n\n```bash\ncomposer require rezgui/laravel-livetinker --dev\n```\n\n\u003e If you're using Laravel prior to version 5.5 you have to configure by adding Service Provider in your `/config/app.php`\n\u003e\n\u003e ```\n\u003e 'providers' =\u003e [\n\u003e     // other providers\n\u003e     \n\u003e     Rezgui\\LiveTinker\\LiveTinkerServiceProvider::class,\n\u003e  ],\n\u003e ```\n\nPublish assets via following command\n\n```bash\nphp artisan vendor:publish --tag=live-tinker\n```\n\n## Usage\n\nIf you do not have configured web-server we'll use Laravel's built-in one\n\n``` bash\nphp artisan serve \n```\n\n\u003e Note\n\u003e\n\u003e Due to security reasons the following route will be available in `APP_DEBUG=true` mode only, which always must be set to `false` in production\n\nNow just open http://**your-domain**/live-tinker (replace **your-domain** with your domain or `ip:port` given by `php artisan serve` command)\n\nYou should see editor window with php code highlighting (powered by [Ace Editor](https://github.com/ajaxorg/ace)) and the result window. Now you can type/copy any code or even whole classes and test them in your browser and everything will work as if it has been typed in tinker console command.\n\n## Features\n\n- No dependency\n- Full Laravel environment support\n- No need to reload page on code change\n- Saves your code in local-storage (restores if browser window has restarted)\n- Run all or only part of your code\n- Code highlight via Ace Editor\n- Quick run using keyboard commands\n- Laravel-native errors by *Whoops*\n- Test any plain PHP code\n\n## Screenshots\n\n### Work with your models \n![Imgur](https://i.imgur.com/0fyjv3n.png)\n\n\n### Get errors with Whoops\n![Imgur](https://i.imgur.com/d2owQjr.png)\n\n\n### Plain PHP\n![Imgur](https://i.imgur.com/G5lwHzx.png)\n\n\n# License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frezgui%2Flaravel-livetinker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frezgui%2Flaravel-livetinker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frezgui%2Flaravel-livetinker/lists"}