cat get_url_path_of_category command

This commit is contained in:
merdan 2024-01-08 11:29:55 +05:00
parent abc0a212f6
commit ce09d92880
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ namespace Sarga\Admin\Providers;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;
use Sarga\Admin\Console\Commands\UpdateCategoryFunction;
use Sarga\Admin\Console\Commands\UpdateMeilisearchIndex;
class AdminServiceProvider extends ServiceProvider
@ -52,7 +53,8 @@ class AdminServiceProvider extends ServiceProvider
);
$this->commands([
UpdateMeilisearchIndex::class
UpdateMeilisearchIndex::class,
UpdateCategoryFunction::class
]);
}
}