# Community Starter Kit Support in laravel new
12.2 Laravel new command,新增支援 community starter kit,支援的清單可 參考
laravel new --using statamic/statamic my-statamic-app
laravel new --using tnylea/filamentapp my-filament-app
# TestResponse ddBody() Method
12.2 TestResponse 新增 ddBody method
<?php
// In a feature test...
$response = $this->get('/example');
$response->ddBody(); // Dumps the whole body
// Dump a specific JSON key
$response->ddBody('title'); // Uses $this->ddJson('title') under the hood
# Context Increment and Decrement Methods
12.2 Context class 新增 increment & decrement method
<?php
Context::increment('uploads'); // 1
Context::increment('uploads'); // 2
Context::increment('uploads', 5); // 7