FeedbackJar integrates with Laravel via a script tag in your Blade layout. Works with Blade, Livewire, and Inertia. No Composer package or build step required.
# Sign up at app.feedbackjar.com
# Create a widget → copy your Widget ID {{-- resources/views/layouts/app.blade.php — before </body> --}}
<script src="https://cdn.feedbackjar.com/sdk.js"></script>
<script>
window.fj.init('{{ config('services.feedbackjar.id') }}');
</script>
</body> // config/services.php
'feedbackjar' => [
'id' => env('FEEDBACKJAR_ID'),
], → Add FEEDBACKJAR_ID=your_widget_id to your .env file, then run php artisan config:clear.
{{-- in your layout --}}
@auth
<script>
window.fj.identify({
id: '{{ auth()->id() }}',
email: '{{ auth()->user()->email }}',
firstName: '{{ auth()->user()->name }}',
});
</script>
@endauth → For linked posts and portal login, generate an HMAC signature server-side — see the Auto-login docs.
Sign up free, grab your Widget ID, and have the feedback widget running in your Laravel app in 2 minutes.