| 12345678910111213141516171819202122232425 |
- <?php
- namespace Illuminate\Tests\Integration\Http\Fixtures;
- use Illuminate\Database\Eloquent\Model;
- class Post extends Model
- {
- /**
- * The attributes that aren't mass assignable.
- *
- * @var string[]
- */
- protected $guarded = [];
- /**
- * Return whether the post is published.
- *
- * @return bool
- */
- public function getIsPublishedAttribute()
- {
- return true;
- }
- }
|