15 lines
173 B
PHP
Executable File
15 lines
173 B
PHP
Executable File
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Artnim extends Model
|
|
{
|
|
protected $connection = 'mysql';
|
|
protected $table = 'tblProdotti';
|
|
|
|
|
|
|
|
}
|