0%

1
2
3
4
5
6
7
Schema::connection('')->table($tableName, function (Blueprint $table) {
$sm = Schema::getConnection()->getDoctrineSchemaManager();
$indexesFound = $sm->listTableIndexes('table');

if(array_key_exists("index_name", $indexesFound))
$table->dropUnique("index_name");
});

1
2
3
4
require __DIR__ . '/vendor/autoload.php';
$app = require_once __DIR__ . '/bootstrap/app.php';

config('any');
x

解决办法:

1
2
3
4
5
require __DIR__ . '/vendor/autoload.php';
$app = require_once __DIR__ . '/bootstrap/app.php';

(new \Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app);
config('any');

使用 (new \Illuminate\Foundation\Bootstrap\LoadConfiguration)->bootstrap($app); 加载配置

ServiceProvider 里面加上

1
app('view')->addLocation(module_path('Develop') . '/resources/views');

zsh 命令补全插件

zsh-users/zsh-autosuggestions

x

laravel5(使用前提:安装了 oh-my-zsh

x

使用方法,修改 ~/.zshrc,在 plugins 里面加一行 laravel5,然后运行 source ~/.zshrc

主要用处:在输入 artisan 的时候可以自动进行命令补全(包括自定义的一些命令)