Files
hoshal-market/app/Models/CarouselSlide.php
Mekan1206 b13d61b342 Update project dependencies and configuration
- Added Filament and Tailwind CSS dependencies in composer.json.
- Updated AGENTS.md to include new package versions.
- Modified boost.json to include tailwindcss-development skill.
- Updated DatabaseSeeder to create an admin user with a password.
- Changed the root route to use HomeController instead of a closure.
- Adjusted permissions for .gitignore in storage directory.
2026-06-04 21:30:06 +05:00

21 lines
469 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Storage;
class CarouselSlide extends Model
{
protected $fillable = ['image', 'title', 'subtitle', 'order', 'is_active'];
protected static function booted(): void
{
static::deleting(function (CarouselSlide $slide) {
if ($slide->image) {
Storage::disk('public')->delete($slide->image);
}
});
}
}