Skip to content

Commit

Permalink
feat: #3 add base module to extend all modules from
Browse files Browse the repository at this point in the history
  • Loading branch information
m-triassi committed Nov 20, 2023
1 parent acc4c64 commit 3f36bda
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Models/Module.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace Plank\Contentable\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Plank\Contentable\Concerns\CanRender;

class Module extends Model
{
use CanRender;
use HasFactory;
}

0 comments on commit 3f36bda

Please sign in to comment.