Výrečný odstrániť laravel

Príklady kódu

7
0

laravel aktualizácia z dotazu

$affected = DB::table('users')
              ->where('id', 1)
              ->update(['votes' => 1]);
4
0

laravel vytvoriť model

# The easiest way to create a model instance is using the 
# make:model Artisan command:

php artisan make:model Flight

# If you would like to generate a database migration when you 
# generate the model, you may use the --migration or -m option:

php artisan make:model Flight --migration
php artisan make:model Flight -m
2
0

vymazanie sily Laravelu

Product::find($id)->forceDelete();
1
0

laravel dotaz s trashed

$user->roles()->withTrashed()->get();
0
0

vymazanie sily Laravelu

Product::onlyTrashed()->where('deleted_at', '<', Carbon::subDays(30))->forceDelete();

V iných jazykoch

Táto stránka je v iných jazykoch

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................