photo/app/Models/PhotoTag.php

15 lines
207 B
PHP
Raw Normal View History

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