Nexus-InglineSystems/app/Services/ClientService.php

15 lines
235 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() {}
}