for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Finder\Http\Requests\Commerce;
use Population\Models\Commerce\Product;
class ProductRequest extends CommerceRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
return app(Product::class)->rules;
}