24 lines
412 B
PHP
24 lines
412 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Services\ClientService;
|
|
use Illuminate\Http\Request;
|
|
|
|
class AddClientController extends Controller
|
|
{
|
|
|
|
private ClientService $clientService;
|
|
public function __construct(ClientService $clientService)
|
|
{
|
|
$this->clientService = $clientService;
|
|
}
|
|
|
|
|
|
public function addClient(Request $request)
|
|
{
|
|
|
|
dd($this->clientService);
|
|
}
|
|
}
|