Revision 2 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model;/*** App\Models\SalesPortalType** @property int $id* @property string $type* @property string $name* @property int $max_categories* @property int $min_depth_category* @property int $only_end_category* @property int $revokeable* @property string $script* @property string $script_folder* @property string $commit_possibilities* @property \Illuminate\Support\Carbon|null $created_at* @property \Illuminate\Support\Carbon|null $updated_at* @method static \Database\Factories\SalesPortalTypeFactory factory($count = null, $state = [])* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType newQuery()* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType query()* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereCommitPossibilities($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereCreatedAt($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereMaxCategories($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereMinDepthCategory($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereName($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereOnlyEndCategory($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereRevokeable($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereScript($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereScriptFolder($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereType($value)* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereUpdatedAt($value)* @mixin \Eloquent*/class SalesPortalType extends Model{/*** The database connection that should be used by the migration.** @var string*/protected $connection = 'cms';use HasFactory;}