Initial welcome page

This commit is contained in:
Deon George
2019-11-08 23:51:47 +11:00
parent a91ddbe66e
commit f6b456aa3d
10 changed files with 79 additions and 35 deletions

15
app/Models/PhotoTag.php Normal file
View File

@@ -0,0 +1,15 @@
<?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';
}