<?php
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Mission extends Model
|
|
{
|
|
protected $fillable = [
|
|
'hashtag',
|
|
];
|
|
|
|
public function tweets() {
|
|
return $this->hasMany('App\Tweet');
|
|
}
|
|
}
|