Files
roxane/app/Services/ContactService.php

22 lines
312 B
PHP
Raw Normal View History

2025-10-24 14:38:11 +02:00
<?php
namespace App\Services;
use App\Models\Contact;
class ContactService
{
public function __construct()
{
//
}
public function registerNewContactRequest(array $data): Contact
{
$contact = new Contact();
$contact->fill($data);
$contact->save();
}
}