“Sqlstate [42S02] Lumen” Kod odpowiedzi

Sqlstate [42S02] Lumen

You need to define the table name in model as shown below.
class User extends Model
{
    //
    public $table = "products";
}
Ankur

SQLSTATE [42S02]: Tabela podstawowa lub widok nie znaleziono: 1146 TAB

It seems Laravel is trying to use category_posts table (because of many-to-many relationship). But you don't have this table, because you've created category_post table. Change name of the table to category_posts.
Famous Frog

Tabela podstawowa lub widok nie znaleziono: 1146 Tabela

class Cotizacion extends Model{
    public $table = "cotizacion";
Comfortable Crane

Odpowiedzi podobne do “Sqlstate [42S02] Lumen”

Pytania podobne do “Sqlstate [42S02] Lumen”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu