“Laravel Global Scope” Ответ

Ларев мягкие удаления

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

Ларавел использует глобальную переменную в модели

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

Ларавел без глобального масштаба

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

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

красноречиво первым

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

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

Ларавел без глобальных областей

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

Laravel Global Scope

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

Ответы похожие на “Laravel Global Scope”

Вопросы похожие на “Laravel Global Scope”

Больше похожих ответов на “Laravel Global Scope” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования