これまではうまくいきましたが、すべての作者ファイルを更新しましたが、今はLaravel Bladeに問題があります。 Laravelのバージョンは5.4.28
です。Laravel Blade、デフォルトの部分が正常に動作しなくなったようです。
私は(calculator/leopardgeckos/partials/ogtags.blade.php
)この部分を持っている:
<link rel="canonical" href="https://reptimatecalculator.com" />
<meta property="fb:app_id" content="1795251550755689">
<meta property="og:url" content="https://reptimatecalculator.com" />
<meta property="og:type" content="website" />
<meta property="og:locale" content="en_GB" />
<meta property="og:title" content="ReptiMate - Leopard Gecko & African Fat Tail Gecko Genetics Calculator" />
<meta property="og:description" content="ReptiMate Calculator was built from the ground up to create an accurate genetics calculator for Leopard Geckos & African Fat Tailed Geckos. You'll get a list of outcomes including percentage chance of recessive genes being carried over, a punnet square of genetics and also a percentage table denoting likelihood of certain combos hatching." />
<meta property="og:image" content="{{ url('images/reptimate-og-image.jpg') }}" />
そして、私はそうのように私のレイアウトファイルでそれを呼び出すようにしようとしている:
@yield('ogtags', View::make('calculator.leopardgeckos.partials.ogtags'))
だから、何もogtags
セクションで設定されていない場合他のテンプレートファイルでは、デフォルトではこの部分ファイルになります。
しかし、どのようなことが実際にやっていると、画面にこれを印刷している:
私は私のエラーを引き起こしているものをうまくすることはできませんが、これは今しばらくの間、正常に動作しています。他の誰かがこれを見ているのですか?
:
へ:
私はこの行を変更することで、この問題を解決するために管理してきました。 https://github.com/laravel/framework/pull/19884 – David
@David上記のように、私は今日更新しました。これは今ではこの問題を抱えています –
多分私はキャッシュの等を消去する必要があります –