Use map() instead of transform(), use fn() instead of function(), consistent coding for form.select
Some checks failed
Create Docker Image / Build Docker Image (x86_64) (push) Failing after 28s
Create Docker Image / Final Docker Image Manifest (push) Has been skipped

This commit is contained in:
2024-08-18 14:02:03 +10:00
parent 5139b26a05
commit 2c3665650c
15 changed files with 23 additions and 22 deletions

View File

@@ -21,7 +21,7 @@ abstract class Type extends Model
*/
final public function products()
{
return $this->morphMany(Product::class, null,'model','model_id');
return $this->morphMany(Product::class,null,'model','model_id');
}
/**