Files
alrahma_sunday_school_api/app/Services/Communication/CommunicationLogService.php
T
2026-06-09 01:25:14 -04:00

19 lines
351 B
PHP

<?php
namespace App\Services\Communication;
use App\Models\CommunicationLog;
use Illuminate\Support\Facades\Schema;
class CommunicationLogService
{
public function log(array $payload): void
{
if (! Schema::hasTable('communication_logs')) {
return;
}
CommunicationLog::query()->create($payload);
}
}