PHP code example of dianagung / larawinds

1. Go to this page and download the library: Download dianagung/larawinds 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/ */

    

dianagung / larawinds example snippets

blade
<x-radio name="package" title="Free, Pro" text="IDR 99000, IDR 249000" value="free,pro" />
blade
<x-radio name="package" title="Free, Pro" text="IDR 99000, IDR 249000" value="free,pro" key="free" />
blade
<x-upload.image name="avatar" label="Upload Avatar" accept="jpg,png" maxsize="2 MB" />
blade
<x-card.form title="Card Title" action="{{ route('route') }}" btext="Save">
    // other components here
</x-card.form>
blade
<x-card.form title="Card Title" action="{{ route('route') }}" btext="Update" method="PUT">
    // other components here
</x-card.form>