PHP code example of alexvargash / tall-maryui

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

    

alexvargash / tall-maryui example snippets


return [
    /*
    |--------------------------------------------------------------------------
    | Authentication Routes
    |--------------------------------------------------------------------------
    |
    | These configuration options determine the route that a user is redirected
    | after an action is successful.
    |
    */

    'routes' => [
        'login' => 'home',
        'register' => 'home',
        'verify' => 'home',
        'reset_password' => 'home',
    ],

];

return [
    /**
     * Default component prefix.
     *
     * Make sure to clear view cache after renaming with `php artisan view:clear`
     *
     *    prefix => ''
     *              <x-button />
     *              <x-card />
     *
     *    prefix => 'mary-'
     *               <x-mary-button />
     *               <x-mary-card />
     *
     */
    'prefix' => '',

];