photo/app/Models/PhotoTag.php
2019-11-08 23:51:47 +11:00

15 lines
207 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PhotoTag extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'photo_tag';
}