Home > Database > Mysql Tutorial > body text

Why Am I Getting a \'Base Table or View Not Found\' Error in Laravel 5?

Linda Hamilton
Release: 2024-10-26 03:10:02
Original
847 people have browsed it

Why Am I Getting a

Base Table or View Not Found: 1146 Table Laravel 5

When trying to save data to MySQL using Laravel 5, users may encounter the following error:

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'sistemal5.cotizacions' doesn't exist
Copy after login

This error typically occurs when Laravel is appending an "S" to the table name, resulting in an invalid table reference.

To troubleshoot this issue, verify the following:

Controller Store Method:

public function store(CotFormRequest $request)
    {    
        $quote = new Cotizacion;
        $quote->customer_id = Input::get('data.clientid');
        $quote->total = Input::get('data.totalAftertax');    
        $quote->save();    
    }
Copy after login

Model:

<?php namespace App\Models\Cotizacion;

use Illuminate\Database\Eloquent\Model;


class Cotizacion extends Model {

}
Copy after login

Potential Issues:

  • The specified table in the model may be incorrect. Double-check that the table name is "cotizacion" (singular) and not "cotizacions" (plural).
  • Laravel may be unable to determine the plural form of the table name. To resolve this, explicitly specify the table name within the model:
class Cotizacion extends Model{
    public $table = "cotizacion";
}
Copy after login

Solution:

To fix this issue, ensure that the table name in the model matches the actual table name in your database and that the plural form is explicitly specified if necessary.

The above is the detailed content of Why Am I Getting a \'Base Table or View Not Found\' Error in Laravel 5?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!