workflow change

This commit is contained in:
Dev Distant
2019-08-04 09:56:40 -04:00
parent f262392672
commit fdc2772ee2
50 changed files with 1537 additions and 139 deletions

13
app/Picture.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Picture extends Model
{
public function pictureable()
{
return $this->morphTo();
}
}