# Partial:Exists

Checks if a partial exists.

## Overview

You can use this tag to check if a partial exists. Useful if you have some sort of dynamic loop.

::tabs

::tab antlers
```antlers
{{ if {partial:exists src="mypartial" } }}
    It exists
{{ else }}
    It doesn't.
{{ /if }}
```
::tab blade
```blade
@if (Statamic::tag('partial:exists')->src('mypartial')->fetch())
  It exists
@else
  It doesn't.
@endif
```
::

## Related Reading

This tag goes hand in hand with the [`partial`](/tags/partial.md) tag.
You may be interested in the [`partial:if_exists`](/tags/partial-if-exists.md) tag to simplify your template.
