mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
18 lines
310 B
PHP
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);
|
|
}
|
|
} |