photo/app/Model/PhotoTag.php

16 lines
207 B
PHP
Raw Normal View History

2016-06-22 05:49:20 +00:00
<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class PhotoTag extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'photo_tag';
}