Subversion-Projekte lars-tiefland.webanos.faltradxxs.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2 lars 1
<?php
2
 
3
namespace App\Models;
4
 
5
use Illuminate\Database\Eloquent\Factories\HasFactory;
6
use Illuminate\Database\Eloquent\Model;
7
 
8
class SalesPortalType extends Model
9
{
10
    /**
11
     * The database connection that should be used by the migration.
12
     *
13
     * @var string
14
     */
15
    protected $connection = 'cms';
16
    use HasFactory;
17
}