daycode/stup-images

Stup Images or Store Or Update Images is a Package For Storing / Updating the Images, More Clear Codes and Upgrade Readability

v1.2.1 2025-03-03 08:37 UTC

This package is auto-updated.

Last update: 2025-03-31 08:52:38 UTC


README

Stup Image is a Package For Storing / Updating the Images, More Clear Codes and Upgrade Readability. Integrated with Intervention Image Library

Installation Guide

  1. Install the package via Composer:
composer require daycode/stup-images
  1. Dump and optimize the autoloader:
composer dump-autoload && php artisan optimize:clear
  1. Link the storage directory:
php artisan storage:link

Usage Examples

Use the Stupable trait in your controller or any class to handle image upload and storage.

use Daycode\StupImage\Stupable;

Store to Database Example

public function store(Request $request): RedirectResponse
{
    User::create(... + [
        'thumbnail' => $this->uploadFile($request->file('thumbnail'), 'images/thumbnail'),
    ]);

    return redirect()->back()->with('success', 'User Successfully Created');
}

Update to Database Example

public function update(Request $request, $id): RedirectResponse
{
    $user = User::findOrFail($id);
    $user->update(... + [
        'thumbnail' => !empty($request->thumbnail)
            ? $this->syncUploadFile($request->file('thumbnail'), $user->thumbnail, 'images/thumbnail')
            : $user->thumbnail,
    ]);

    return redirect()->back()->with('success', 'User Successfully Updated');
}

Credits