PHP Laravel刀片模板

I dont have knowledge in laravel Blade and I have this code :

<span v-bind:class="{ 'total': (listing.price_per_week), 'total total-center': (!listing.price_per_week)}">@{{ listing.price_view }}*</span>

I want to pass that price value to this function

<?php echo removeFrom( @{{ listing.price_view }} ); ?>

but it doesnt work this way

how can pass this

Thanks

Please check this out: Blade & JavaScript Frameworks

Since many JavaScript frameworks also use "curly" braces to indicate a given expression should be displayed in the browser, you may use the @ symbol to inform the Blade rendering engine an expression should remain untouched. For example:

<h1>Laravel</h1>

Hello, @{{ name }}.

In this example, the @ symbol will be removed by Blade; however, {{ name }} expression will remain untouched by the Blade engine, allowing it to instead be rendered by your JavaScript framework.