Permalink
Cannot retrieve contributors at this time
15 lines (10 sloc)
214 Bytes
<?php | |
namespace App; | |
use App\Traits\Wordpress; | |
use Illuminate\Database\Eloquent\Model; | |
class Post extends Model | |
{ | |
use Wordpress; | |
protected $table = 'posts'; | |
protected static $post_type = 'post'; | |
} |