258 questions
6
votes
1
answer
37k
views
How can I create api forgot password and change password in laravel? [duplicate]
How can I create API for forgot password and change password in laravel use passport?
**route : **
**Image of postman : **
** Parameter pass in api: **
0
votes
2
answers
4k
views
function static::created does not save properly Laravel
So I have 2 tables: Item and Product. An Item hasMany Products and a Product belongsTo an Item.
Products migration:
Schema::create('products', function (Blueprint $table) {
$table->...
1
vote
0
answers
108
views
Get id of logged in user having custom authentication middleware - Laravel
I am using custom authentication middleware in API call, and I want to get the logged-in user Id.
here is my route:
Route::group(['middleware' => ['api', 'shopper']], function () {
Route:...
0
votes
1
answer
2k
views
Unable to render View inside ScrollableTabView
I'm new to React Native, and i'm trying to use Tabs using this package https://github.com/LiuC520/react-native-scrollable-tab-view-forked, this is how the tabs created
<ScrollableTabView
...