resource_path

The resource_path function returns the fully qualified path to your application's resources directory. You may also use the resource_path function to generate a fully qualified path to a given file within the resources directory:
<?php $path = resource_path();

$path = resource_path('sass/app.scss');