Skip to content

Releases: qcod/laravel-app-settings

1.0.2

10 Oct 06:53
Compare
Choose a tag to compare

Package has been split into two parts

  • qcod/laravel-app-settings which keeps the current API without any breaking changes and
  • qcod/laravel-settings for a key-value pair in the database

1.0.1

07 Oct 04:24
Compare
Choose a tag to compare

Added image and file upload support in settings
check readme

[
    'name' => 'logo',
    'type' => 'image',
    'label' => 'Upload logo',
    'hint' => 'Must be an image and cropped in desired size',
    'rules' => 'image|max:500',
    'disk' => 'public', // which disk you want to upload, default to 'public'
    'path' => 'app', // path on the disk, default to '/',
    'preview_class' => 'thumbnail', // class for preview of uploaded image
    'preview_style' => 'height:40px' // style for preview
]

1.0.0

04 Oct 17:15
Compare
Choose a tag to compare

Initial release