I created a migration in the following way:
public function up() {
Schema::create('partesdiarios', function (Blueprint $table{
....
Effectively, create the daily shares table in MySQL. But when I want to create an object from tinker it returns an error:
Illuminate/Database/QueryException with message 'SQLSTATE[42S02]: Base table or view not found: 1146 Table 'baseprueba.parte_diarios'
That is, look for a table with a different name ( parte_diarios ). Thanks from now.