Deprecated: Return type of Google\Model::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 256

Deprecated: Return type of Google\Model::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 261

Deprecated: Return type of Google\Model::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 268

Deprecated: Return type of Google\Model::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Model.php on line 278

Deprecated: Return type of Google\Collection::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 22

Deprecated: Return type of Google\Collection::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 38

Deprecated: Return type of Google\Collection::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 30

Deprecated: Return type of Google\Collection::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 43

Deprecated: Return type of Google\Collection::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 14

Deprecated: Return type of Google\Collection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /var/www/html/sanralsmme/vendor/google/apiclient/src/Collection.php on line 49
Symfony Profiler

templates/frontend/search.html.twig line 1

Open in your IDE?
  1. <form role="search" method="get" name="search-tenders" action="{{ path('tender_search_results_page') }}" enctype="application/x-www-form-urlencoded">
  2.     <fieldset class="border py-2 px-3">
  3.         <legend class="w-auto text-uppercase text-rain-forest px-2">Search Tenders</legend>
  4.         <div class="form-row">
  5.             <div class="form-group col-md-4">
  6.                 <label for="filterRegion">REGION</label>
  7.                 <select name="region" class="form-control ol-none bs-none br-0">
  8.                     <option value="">All Regions</option>
  9.                     {%  for region in regions %}
  10.                         <option value="{{ region.id }}">{{ region.region }}</option>
  11.                     {% endfor %}
  12.                 </select>
  13.             </div>
  14.             <div class="form-group col-md-4">
  15.                 <label for="filterCategory">CATEGORY</label>
  16.                 <select name="category" class="form-control ol-none bs-none br-0">
  17.                     <option value="">All Categories</option>
  18.                     {% for cat in categories %}
  19.                         <option value="{{ cat.id }}">{{ cat.category }}</option>
  20.                     {% endfor %}
  21.                 </select>
  22.             </div>
  23.             <div class="form-group col-md-4">
  24.                 <label for="filterStatus">STATUS</label>
  25.                 <select name="status" class="form-control ol-none bs-none br-0">
  26.                     <option value="">All Statuses</option>
  27.                     <option value="1">Advertised</option>
  28.                     <option value="2">Awarded</option>
  29.                     <option value="3">Cancelled</option>
  30.                     <option value="4">Closed</option>
  31.                     <option value="5">Archived</option>
  32.                     <option value="">Recieved</option>
  33.                 </select>
  34.             </div>
  35.         </div>
  36.         <div class="form-row align-items-center">
  37.             <div class="form-group col-md-12">
  38.                 <button type="submit" class="btn btn-primary btn-lg btn-block rain-forest br-0 bdr-none">Search</button>
  39.             </div>
  40.         </div>
  41.     </fieldset>
  42. </form>