Files
wticreatorstudio/app/Services/ContactService.php
Fritz Ramirez 10d0c477c8 Initial commit
2024-02-12 22:54:20 -05:00

18 lines
310 B
PHP

<?php
namespace App\Services;
use App\Repositories\ContactRepository;
class ContactService{
protected $contact;
public function __construct(ContactRepository $contact){
$this->contact = $contact;
}
public function store($data){
return $this->contact->store($data);
}
}