PHP code example of emaia / laravel-hotwire-turbo

1. Go to this page and download the library: Download emaia/laravel-hotwire-turbo library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

emaia / laravel-hotwire-turbo example snippets


/* Some controller method... */
public function update(Request $request)
{

    /* ... */

    if (request()->wasFromTurboFrame('modal')) {

        $streamCollection = new StreamCollection([
            new Stream(
                Action::PREPEND,
                'flash-container',
                view('components.flash-message', [
                    'hasSuccess' => true,
                    'message' => $successMessage,
                ])
            ),
            new Stream(
                Action::UPDATE,
                'modal',
                ''
            ),
        ]);

        return response()->turboStream(
            $streamCollection
        );

    }

    return redirect()->back()->with('success', $successMessage);
}