第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我的遷移文件在運(yùn)行“php artisan migrate”時(shí)出現(xiàn)錯(cuò)誤

我的遷移文件在運(yùn)行“php artisan migrate”時(shí)出現(xiàn)錯(cuò)誤

PHP
達(dá)令說 2023-04-02 14:54:28
我得到的錯(cuò)誤是“Illuminate\Database\QueryException:SQLSTATE[42S22]:未找到列:1054 ‘where 子句’中的未知列‘key’(SQL:從其中選擇 *!=admin_settings空key限制 1)”因?yàn)楹瘮?shù)在app/Providers/AppServiceProvider.php public function boot()    {        if (Schema::hasTable('admin_settings')) {            $google_analytics_details = AdminSetting::where('key','!=','null')->first();        }else {            $google_analytics_details = '';        }                View::share('google_analytics_details', $google_analytics_details);    }當(dāng)我評(píng)論引導(dǎo)功能的代碼時(shí),它就成功遷移了。我正在尋找此視圖共享的替代方案。誰(shuí)能幫我??我的遷移文件內(nèi)容:<?phpuse Illuminate\Database\Migrations\Migration;use Illuminate\Database\Schema\Blueprint;use Illuminate\Support\Facades\Schema;class UpdateAdminSettingsTable extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        //         Schema::table('admin_settings', function (Blueprint $table) {            $table->dropColumn('google_analytics_code');        });        Schema::table('admin_settings', function (Blueprint $table) {            $table->longText('key')->nullable()->after('id');            $table->longText('value')->nullable()->after('key');        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        //         Schema::table('admin_settings', function (Blueprint $table) {        });    }}
查看完整描述

1 回答

?
ABOUTYOU

TA貢獻(xiàn)1812條經(jīng)驗(yàn) 獲得超5個(gè)贊

如果您想將變量共享到一個(gè)視圖(可以加載或擴(kuò)展到其他視圖,例如layout.app),您可以指定視圖名稱,如下例所示

簡(jiǎn)單的例子:

View::composer('view-name', function ($view) {

? ? ? ? ? ? ?$view->with('key', 'value');

? ? ? ? });

或者如果您在所有視圖中都需要它,您可以*像這樣用作視圖名稱


View::composer('*', function ($view) {

? ? ? ? ? ? ?$view->with('key', 'value');

? ? ? ? });

另一種解決問題的方法

您的遷移問題也可以在共享視圖之前通過條件解決


?public function boot()

? ? {

? ? ? ? if ( !app()->runningInConsole() ){

? ? ? ? ? ? ?// your code here

? ? ? ? }

? ? }


查看完整回答
反對(duì) 回復(fù) 2023-04-02
  • 1 回答
  • 0 關(guān)注
  • 191 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)