11.1. 评论某个问题
本节说明
本节我们来开始开发「评论」功能。
评论功能
「评论」功能是一个常见的功能,在我们的项目中,评论的对象可以是某个问题或者某个回答。我们依然是从测试开始:
tests/Feature/Comments/QuestionCommentsTest.php
<?php
namespace Tests\Feature\Comments;
use App\Models\Question;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class QuestionCommentsTest extends...