25 lines
446 B
PHP
25 lines
446 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Event;
|
|
use App\Models\Seat;
|
|
use App\Models\SeatingLimit;
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
class SeatingService
|
|
{
|
|
protected $limitsCacheKey = 'acceptanceLimits';
|
|
|
|
protected $tabulationService;
|
|
|
|
/**
|
|
* Create a new class instance.
|
|
*/
|
|
public function __construct(TabulationService $tabulationService)
|
|
{
|
|
$this->tabulationService = $tabulationService;
|
|
}
|
|
|
|
}
|