Skip to content

Tag: laravel

Laravel sync users to all of categoires which they can be unlimited

In our web application each user can create multiple nested category by selecting the parent which that specified with category_id column. now you supposed one of our user created this category structure: multiple nested categories children are unlimited, that means every category can be have child and we can…

Laravel 8: Undefined offset error message

I’m working with Laravel Controllers: When I fill the form that comes with this Controller I get this message: ErrorException Undefined offset: 300 From this line: So what is the problem here? Answer The problem is probably this line: $image[$size] = $imagePath . “{$size}” . $filename; it sh…