This repository has been archived on 2022-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
socialtree-laravel/src/app/Models/links.php

28 lines
479 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class links extends Model
{
use HasFactory;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'links';
/**
* The model's default values for attributes.
*
* @var array
*/
protected $attributes = [
'plattform' => 'null',
'link' => 'null'
];
}