test: Add feature tests

This commit is contained in:
Attila Kerekes
2022-12-04 10:14:07 +01:00
committed by Attila Kerekes
parent 52620bc331
commit 45cc84c99c
17 changed files with 360 additions and 31 deletions

View File

@@ -2,6 +2,7 @@
namespace App;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\Pivot;
/**
@@ -22,4 +23,5 @@ use Illuminate\Database\Eloquent\Relations\Pivot;
*/
class ItemTag extends Pivot
{
use HasFactory;
}