10.5. 关注问题
本节说明
本节我们来开发问题的「关注」功能:当关注了某一个问题后,如果该问题有新的答案,那么关注者会收到一条通知。
关注问题
我们依然是从测试开始,首先新建测试:
tests/Feature/Questions/SubscribeQuestionsTest.php
<?php
namespace Tests\Feature\Questions;
use App\Models\Question;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class SubscribeQuestionsTest extend...