调整开通身份

This commit is contained in:
2023-03-13 11:13:52 +08:00
parent 2bf6a397b1
commit 1fcedae027
13 changed files with 658 additions and 60 deletions

23
config/favorite.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
return [
/**
* Use uuid as primary key.
*/
'uuids' => false,
/*
* User tables foreign key name.
*/
'user_foreign_key' => 'user_id',
/*
* Table name for favorites records.
*/
'favorites_table' => 'favorites',
/*
* Model name for favorite record.
*/
'favorite_model' => 'Overtrue\LaravelFavorite\Favorite',
];