Implement link type controller.

This commit is contained in:
James Cole
2018-06-28 22:14:50 +02:00
parent 7749fb1a0b
commit 234e3f4ca5
6 changed files with 247 additions and 5 deletions

View File

@@ -24,6 +24,7 @@ namespace FireflyIII\Models;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
@@ -34,12 +35,13 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
* @property bool $editable
* @property Carbon $created_at
* @property Carbon $updated_at
* @property int $id
* @property int $id
* Class LinkType
*
*/
class LinkType extends Model
{
use SoftDeletes;
/**
* The attributes that should be casted to native types.
*