Files
ntspi-app/app/Containers/Dashboard/Actions/Sliders/CreateSliderAction.php
T
2026-04-07 17:54:26 +05:00

17 lines
331 B
PHP

<?php
namespace App\Containers\Dashboard\Actions\Sliders;
use App\Containers\Widget\Models\Slider;
use Illuminate\Support\Str;
class CreateSliderAction
{
public function run(array $data): Slider
{
$data['slug'] = $data['slug'] ?? Str::slug($data['title']);
return Slider::create($data);
}
}