The mix function returns the path to a versioned Mix file:
<?php $path = mix('css/app.css');
<?php {

    public function index()

    {

        return mix(

            $this->params->get(['src', 'path']),

            $this->params->get(['from', 'in'], '')

        );

    }

}