I have a project that the column_field
is dynamic, it's generated according to the user's input. Now I want to set that table
dynamically, according to the user's input also. And is this possible without doing php artisan migrate
?
Here what I want to do inside my Model.
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Customer extends Model
{
$tableName = 'users_input';
protected $guarded = [];
protected $table = $tableName;
public $timestamps = false;
protected $primaryKey = 'id';
}
Waiting for your suggestions.
Cheers
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire