📚 Cheatsheet

Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.

Snippets 4

Retour
Ajouter une clé étrangère
Avancé
$table->foreignId('user_id')->constrained()->onDelete('cascade');
Structure d'une migration (méthode down)
Facile
public function down()
{
    Schema::dropIfExists('flights');
}
Structure d'une migration (méthode up)
Facile
Schema::create('flights', function (Blueprint $table) {
    $table->id();
    $table->string('name');
    $table->timestamps();
});
Utiliser une factory dans un seeder
Intermédiaire
\App\Models\User::factory(10)->create();