“Laravel Global Scope” Réponses codées

Larave Soft Deletes

Schema::table('flights', function (Blueprint $table) {
    $table->softDeletes();
});
Alberto Peripolli

Laravel utilise la variable globale dans le modèle

SET configuration variables at runtime:
class AppServiceProvider extends ServiceProvider
{
    public function boot()
    {
        View::share('key', 'value');
        Schema::defaultStringLength(191);
        $company=DB::table('company')->where('id',1)->first();
        config(['yourconfig.company' => $company]);
    }
}

USE:
config('yourconfig.company');
Alemhar

Laravel sans portée mondiale

public function boot()
    {
        parent::boot();

        Route::bind('project', function($id) {
            return \App\Project::withoutGlobalScopes()->findOrFail($id);
        });
    }
santosh khanal

éloquent d'abord

$user = User::where('mobile', Input::get('mobile'))->get();

if (!$user->isEmpty()){
    $firstUser = $user->first()
}
Different Dogfish

Laravel sans portée mondiale

Model::withoutGlobalScopes()->get();
santosh khanal

Laravel Global Scope

protected static function boot()
    {
        parent::boot();
  
        static::addGlobalScope(new ArchiveScope);
    }
santosh khanal

Réponses similaires à “Laravel Global Scope”

Questions similaires à “Laravel Global Scope”

Plus de réponses similaires à “Laravel Global Scope” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code