<?php

namespace App\Services\[entityName];

use App\Helpers\Ensure;
use App\Models\[entityFolder]\[entityName]\[entityName];
use App\Services\Core\Service;

class [entityName]Service extends Service
{
    public static mixed $model = [entityName]::class;
    public static array $config = [];
}
