@akc4 assuming you KeywirdList model has keyword relation (belongsTo Keyword model), you can use it like so:
$jobs = Jobs::with('keywords.keyword')->all();
and the you can output keywords like
@foreach ($jobs as $job)
@foreach ($job->keywords as $jobKeyword)
{{ $jobKeyword->keyword->name }}
@endforeach
@endforeach
but really your relationships between Job and Keyword is many to many https://laravel.com/docs/8.x/eloquent-relationships#many-to-many and your KeywordList table is pivot table. So it make sence to refactor it