Created
May 31, 2022 23:08
-
-
Save NandoKstroNet/367ef1089d92310bbb79888eb57ba164 to your computer and use it in GitHub Desktop.
Componente Botão Favorito Livewire - Laravel Mastery https://laravelmastery.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Model Content | |
protected $fillable = ['user_id']; | |
public function favoriteable() | |
{ | |
return $this->morphTo(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Schema::create('favorites', function (Blueprint $table) { | |
$table->foreignId('user_id')->constrained()->cascadeOnDelete(); | |
$table->morphs('favoriteable'); | |
$table->timestamps(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment