skip to Main Content

Laravel database migration

I changed only user table and add several columns and when I try migrate:refresh it tells me this error message SQLSTATE[42S02]: Base table or view not found: 1146 Table 'basename.categories' doesn't exist (SQL: select * from `categories`) how can I…

VIEW QUESTION

Filtering a laravel api response with vue3?

I have the vue component below: <template> <div class="container"> <div class="row"> <div class="col-md-4" v-for="product in products" :key="product.id"> <div class="card mb-4"> <!-- <img :src="product.image" class="card-img-top" alt="..."> --> <div class="card-body"> <h5 class="card-title">{{ product.name }}</h5> <p class="card-text">{{ product.description }}</p> <a href="#" class="btn btn-primary">Buy</a>…

VIEW QUESTION
Back To Top
Search