Nexus-InglineSystems/app/Services/ClientService.php

18 lines
297 B
PHP

<?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(array $client)
{
return Client::create($client);
}
}