Add thumbs views in datatables with traits

This commit is contained in:
Ludovic CANDELLIER
2021-11-01 18:37:25 +01:00
parent 18f1f8a13a
commit e9ce44481a
17 changed files with 127 additions and 106 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Traits\Model;
trait CanComment
{
public function needsCommentApproval($model): bool
{
return true;
}
}