9.3. 发布问题
本节说明
本节我们完成「发布问题」的功能。
登录用户能发布问题
我们依然是从测试开始,首先我们新增测试:
$ php artisan make:test "Questions\PublishQuestionsTest"
添加第一个测试:
tests/Feature/Questions/PublishQuestionsTest.php
<?php
namespace Tests\Feature\Questions;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use App\Models\Question