Laravel Playground
发布日期:作者: Eric L. Barnes
Laravel Playground 是 BeyondCode 推出的一个新的免费服务,允许您直接在浏览器中尝试 Laravel 代码。您将获得完整的 IDE 自动完成功能,并可以快速尝试 Laravel 的所有功能。它甚至包含流行的 Laravel 包,因此您可以快速尝试 Laravel Debugbar,或者开始编写您的第一个 Livewire 组件。
在官方公告 中,Marcel Pociot 描述了它的工作原理:
Laravel Playground 是您 Laravel 代码的沙盒,是 Tinkerwell Web 的精神继任者。Laravel Playground 使您能够轻松地在浏览器中快速尝试任何 PHP 和 Laravel 代码。您可以轻松地将其嵌入到您的博客、文档或网站中!
虽然 Tinkerwell Web 的代码完全在您的浏览器中运行,但 Laravel Playground 在实际服务器上运行您的代码。这使您可以快速尝试请求验证、多个 Laravel 路由,甚至 Livewire 组件等功能!
以下是一个展示一些功能的示例嵌入:
/* |-------------------------------------------
Welcome to Laravel Playground |
---|
Laravel Playground allows you to try out PHP and Laravel all from your browser. |
You have access to all Laravel classes and an extensive list of included |
Laravel packages (like Laravel DebugBar). |
You can also load your own Gists! |
Simply append /gist/{YOUR-GIST-ID} to the URL. |
Do you want to see some examples? |
Multiple views: https://laravelplayground.com/#/gist/d990a2c5f23b50564561b9266252f501 |
Form request validation: https://laravelplayground.com/#/gist/e5a0d029f6433e31672e55dd90429d3f |
Livewire: https://laravelplayground.com/#/gist/286de510bfc0a88e697284e90ed1d7da |
*/ |
Route::get('/', function (){ return view('playground', [ 'title' => 'Laravel Playground' ]); });
Laravel Playground ```Laravel Playground - a BeyondCode product
Welcome to {{ $title }}
To learn more about the things you can do, take a look at the official documentation.
这将是一个非常强大的服务,可以快速与朋友分享代码示例,寻求帮助,甚至在您的博客文章中分享代码。有关更多信息,请查看Laravel Playground 和文档。