mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-24 01:50:38 +00:00
delete language transaction in 2.0.14 update
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Domain\Localization\Actions;
|
||||
|
||||
use DB;
|
||||
|
||||
class DeleteLanguageStringsAction
|
||||
{
|
||||
public function __invoke(array $list): void
|
||||
{
|
||||
DB::table('language_translations')
|
||||
->whereIn('key', $list)
|
||||
->delete();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user