Reiseland Kontaktdaten, Rabatt API

This commit is contained in:
Kevin Adametz 2019-11-07 17:08:16 +01:00
parent 8f29c15a2b
commit 70704be1ea
30 changed files with 471 additions and 95 deletions

View file

@ -24,6 +24,8 @@ use Illuminate\Database\Eloquent\Model;
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DraftType newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DraftType newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DraftType query()
* @property int|null $pos
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\DraftType wherePos($value)
*/
class DraftType extends Model
{
@ -32,7 +34,7 @@ class DraftType extends Model
protected $table = 'draft_types';
protected $fillable = [
'name', 'active', 'color',
'name', 'active', 'color', 'pos'
];
public function draft_items()