HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/fire-tech/fire-tech.nl/app/KommaApp/Clients/Composer/ClientsComposer.php
<?php


namespace App\KommaApp\Clients\Composer;


use App\KommaApp\Clients\ClientService;
use Illuminate\View\View;

class ClientsComposer
{

    private $clientService;

    public function __construct()
    {
        $this->clientService = new ClientService();
    }

    /**
     * Bind data to the view.
     *
     * @param  View $view
     * @return void
     */
    public function compose(View $view)
    {
        $clients = $this->clientService->getAllClients();

        $view->with('clients', $clients);
    }

}