File: /home/richfield/www/rich/vendor/cviebrock/eloquent-sluggable/tests/Models/PostNotSluggable.php
<?php namespace Cviebrock\EloquentSluggable\Tests\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class PostNotSluggable
*
* A test model that doesn't use the Sluggable package.
*
* @package Cviebrock\EloquentSluggable\Tests\Models
*/
class PostNotSluggable extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'posts';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['title', 'subtitle'];
/**
* Convert the model to its string representation.
*
* @return string
*/
public function __toString()
{
return (string) $this->title;
}
}