Kayıt Ol

Giriş

Şifremi Kaybettim

Şifreni mi unuttun? Lütfen e-mail adresinizi giriniz. Bir bağlantı alacaksınız ve e-posta yoluyla yeni bir şifre oluşturacaksınız.

Giriş

Kayıt Ol

Laravel – Class ‘App\Providers\Schema’ not found

Class ‘App\Providers\Schema’ not founds hatası yeni başlayanların sıklıkla karşılaştığı bir hatadır. 🙂

For EN go to end of the page.

 

Hadi bi bakalım;

Hata: Class ‘App\Providers\Schema’ not founds

Nedeni: Şemanın çağrılmaması,

Çözüm: İlgili sınıfın başında scheme’yı çağırmak.

 

Örnek:

In AppServiceProvider.php line 16: Class ‘App\Providers\Schema’ not found  hatası için,

  • app\Providers\AppServiceProvider.php dosyasını açın,
  • <?php‘den sonra aşağıdaki satırı ekleyin.

use Illuminate\Support\Facades\Schema;

———–

FOR EN:

Error: Class ‘App\Providers\Schema’ not founds

Reason: Not called/defined the scheme.

Solution: Call/define the that scheme start of the related class.

 

Example:

In AppServiceProvider.php line 16: Class ‘App\Providers\Schema’ not found  for this error,

  • Open app\Providers\AppServiceProvider.php file,
  • After the open  <?php , add the above line,

use Illuminate\Support\Facades\Schema;

 

Hakkında Adıgüzel Boz

Yorum ( 1 )

  1. Ekledim tarif ettiğiniz şekilde ama bi değişiklik olmadı malesef 🙁

Cevap bırakın