2017-04-20 16 views
-1

私のプロジェクトでlangファイルに問題があります。私はさまざまなビューのlangファイルを作成したことが分かりますが、特にエラーが発生していてエラーの説明が表示されません。説明なしのLaravel langエラー

Error Message

1のSymfony \コンポーネント\デバッグ\例外\ FatalErrorException ... /アプリ/ LANG/EN/opportunities.php:6

0を照らし\例外\ハンドラhandleShutdown < #unknown>:0

のSymfony \コンポーネント\デバッグ\例外の\ FatalErrorException(E_UNKNOWN)

Lang PHP File:あなたが最後の行に}を持つ配列を閉じている

return array(

    'opportunities_' => 'Opportunities', 
    'products-and-services' => 'Products and Services', 
    'applied-opportunities' => 'Applied Opportunities', 
    'control-panel' => 'Control Panel', 
    'filters' => 'Filters', 
    'oppportunity' => 'Opportunity type', // <-- key has 3 p's in OP's screenshot 
    'select' => 'Select', 
    'radio' => 'Radio', 
    'festival' => 'Festival', 
    'venue' => 'Venue', 
    'country' => 'Country', 
    'select-country' => 'Select country', 
    'city' => 'City', 
    'select-city' => 'Select a city', 
    'music-genre' => 'Music Genre', 
    'date' => 'Date', 
    'filter' => 'Filter', 
    'application-sent-message' => 'Your application has been sent! If you want to see it, go to your list of applications.', 
    'uncompleted-profile-message' => 'Remember to complete your band profile. It will be important in the reviewing process.', 
    'see-profile' => 'See Profile', 
    'about-the-oppotunity' => 'About the Opportunity', // <-- key missing r in OP's screenshot 
    'download-the-bases' => 'Download the bases', 
    'deadline' => 'Deadline', 
    'apply' => 'Apply', 
    'more-information' => 'More Information', 
    'download-file' => 'Download File', 
    'gallery' => 'Gallery', 
    'get-coupon-code' => 'Get coupon code', 
    'exchange-code' => 'Exchange Code', 

}; // <!-- erroneous curly bracket to close the array in OP's screenshot 
+0

リンクされた画像を挿入しましたが、コードをテキストとして表示する必要があります。 – mickmackusa

+0

このエラーのログを提供できますか?ブレードファイルでLangをどのように呼びますか? –

+0

あなたのコメントの皆様、ありがとうございます、私の配列のクローズは間違いでした:) –

答えて

0

)でなければなりません。 ;)

+0

ありがとう!それは完全に働いた! :) –

関連する問題