Repeater::make('image')
->label("Images")
->columnStart(1)
->columnSpanFull()
->grid(4)
->relationship('product_image')
->schema([
FileUpload::make('file_path')
->hiddenLabel()
->moveFiles()
->image()
->imagePreviewHeight('150')
->imageEditor()
->disk('public')
->directory('product-imgs/')
->downloadable()
->visibility('public')
])
Repeater::make('image')
->label("Images")
->columnStart(1)
->columnSpanFull()
->grid(4)
->relationship('product_image')
->schema([
FileUpload::make('file_path')
->hiddenLabel()
->moveFiles()
->image()
->imagePreviewHeight('150')
->imageEditor()
->disk('public')
->directory('product-imgs/')
->downloadable()
->visibility('public')
])