I'm trying to test upload multiple files
$this->postJson('/products', [
'images' => [
UploadedFile::fake()->create('test.jpg'),
UploadedFile::fake()->create('test2.jpg'),
]
])
->dump();
and got this error "Serialization of 'Illuminate\Http\Testing\File' is not allowed"
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community