Synchro back-office, fix on tariffs

This commit is contained in:
Ludovic CANDELLIER
2021-10-26 21:41:46 +02:00
parent c150be2c3e
commit 86f6ee9a13
45 changed files with 1095 additions and 406 deletions

11
app/Traits/CanComment.php Normal file
View File

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