Sfoglia il codice sorgente

Add StatusHashtag model

Daniel Supernault 7 anni fa
parent
commit
05bf9b7aee
1 ha cambiato i file con 10 aggiunte e 0 eliminazioni
  1. 10 0
      app/StatusHashtag.php

+ 10 - 0
app/StatusHashtag.php

@@ -0,0 +1,10 @@
+<?php
+
+namespace App;
+
+use Illuminate\Database\Eloquent\Model;
+
+class StatusHashtag extends Model
+{
+    protected $fillable = ['status_id', 'hashtag_id'];
+}