Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
scout
/
src
/
Console
:
DeleteAllIndexesCommand.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Scout\Console; use Exception; use Illuminate\Console\Command; use Laravel\Scout\EngineManager; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'scout:delete-all-indexes')] class DeleteAllIndexesCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'scout:delete-all-indexes'; /** * The console command description. * * @var string */ protected $description = 'Delete all indexes'; /** * Execute the console command. * * @param \Laravel\Scout\EngineManager $manager * @return void */ public function handle(EngineManager $manager) { $engine = $manager->engine(); $driver = config('scout.driver'); if (! method_exists($engine, 'deleteAllIndexes')) { return $this->error('The ['.$driver.'] engine does not support deleting all indexes.'); } try { $manager->engine()->deleteAllIndexes(); $this->info('All indexes deleted successfully.'); } catch (Exception $exception) { $this->error($exception->getMessage()); } } }