|
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Client;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Gate;
|
|
|
|
class ClientService
|
|
{
|
|
|
|
public function __construct(protected Client $client) {}
|
|
public function addClient($client) {
|
|
return Client::create($client);
|
|
}
|
|
}
|