PHP code example of luisozparr / adminlte_laravel_components

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

    

luisozparr / adminlte_laravel_components example snippets


<x-form.select name="proveedor_id">
    This is a label
    
    <x-slot name="options">
        @foreach($items as $item)
            <option value="{!! $item->id !!}">Option :D </option>
        @endforeach
    </x-slot>
</x-form.select>