H889761123

Results 5 issues of H889761123

Hi, I am using this code to save an image ``` $edit->add('image','Image','image')->image(function($image){ $name = $image->filename.time(); $extension = $image->extension; $image->widen('800',function($constraint){$constraint->upsize();}); $image->save("public/uploads/{$name}_width800.{$extension}"); } ``` The problem, is that when saving the image,...

to use a checkbox you can type: `$edit->add('public','Public','checkbox');` but how to explicitly use it with enum for example if checked save 'yes' in the database and if unchecked save 'no'...

Hello, is there a way to set multiple redirect links based on the action when using ->back() for example after 'update' or 'insert' I want to redirect to $url1, but...

Hello, is there a way to use this script in order to read 'slices' info?

Hi I am trying to simulate PWM by writing this code to run a servomotor ``` #!/usr/bin/env php