“SQLSTATE [42S02] LUMEN” Kode Jawaban

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]: Tabel dasar atau tampilan tidak ditemukan: 1146 TabL

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

Tabel dasar atau tampilan tidak ditemukan: tabel 1146

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

Jawaban yang mirip dengan “SQLSTATE [42S02] LUMEN”

Pertanyaan yang mirip dengan “SQLSTATE [42S02] LUMEN”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya