PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
src
<?php namespace Botble\Blog; use Botble\Blog\Models\Category; use Botble\Blog\Models\Tag; use Botble\Dashboard\Repositories\Interfaces\DashboardWidgetInterface; use Botble\Menu\Repositories\Interfaces\MenuNodeInterface; use Illuminate\Support\Facades\Schema; use Botble\PluginManagement\Abstracts\PluginOperationAbstract; class Plugin extends PluginOperationAbstract { public static function remove() { Schema::disableForeignKeyConstraints(); Schema::dropIfExists('post_tags'); Schema::dropIfExists('post_categories'); Schema::dropIfExists('posts'); Schema::dropIfExists('categories'); Schema::dropIfExists('tags'); app(DashboardWidgetInterface::class)->deleteBy(['name' => 'widget_posts_recent']); app(MenuNodeInterface::class)->deleteBy(['reference_type' => Category::class]); app(MenuNodeInterface::class)->deleteBy(['reference_type' => Tag::class]); } }
[+]
Forms
[-] Plugin.php
[edit]
[+]
Tables
[+]
..
[+]
Exports
[+]
Services
[+]
Listeners
[+]
Repositories
[+]
Providers
[+]
Models
[+]
Http
[+]
Supports