16 lines
207 B
PHP
16 lines
207 B
PHP
|
<?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';
|
||
|
}
|