Subversion-Projekte lars-tiefland.zeldi.de_alt

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class SalesPortalType extends Model
{
    /**
     * The database connection that should be used by the migration.
     *
     * @var string
     */
    protected $connection = 'cms';
    use HasFactory;
}