Cree las rutas para la creacion de projectos

This commit is contained in:
Daniel Cortés
2019-07-03 01:28:51 -04:00
parent b15c2dc658
commit 53b709c175
22 changed files with 491 additions and 17 deletions

14
app/ProjectPhoto.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ProjectPhoto extends Model
{
protected $table = 'projects_photos';
public function project() {
return $this->belongsTo('App\Project');
}
}