In your JobController, you're retrieving all tags with Tag::all(), but it looks like you're not actually passing the $tags variable to your Blade template when rendering it.
@props(['size' => 'base', 'tags'])
@foreach ($tags as $tag)
<a href="/tags/{{ strtolower($tag->name) }}" class="{{ $classes }}">{{ $tag->name }}</a>
@endforeach