В методе Controller вы можете передать класс как
$tempClass = "navbar-dark bg-dark";
return view("folder.view", compact("...your other arrays", "tempClass"));
В app.blade.php вы можете написать,
@php
$tempClass = (!empty($tempClass) ? $tempClass : 'navbar-transparent')
@endphp
И заменить
<nav id="nav" class="navbar fixed-top navbar-toggleable-md navbar-expand-lg navbar-transparent">
с
<nav id="nav" class="navbar fixed-top navbar-toggleable-md navbar-expand-lg {{ $tempClass }}">
, чтобы вы получили динамическое имя класса в app.blade.php