PHP code example of wychoong / laravel-view-extract

1. Go to this page and download the library: Download wychoong/laravel-view-extract 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/ */

    

wychoong / laravel-view-extract example snippets


return [
    /**
     * Exclude views when resync views (when using sync all)
     */
    'exclude' => [
        // 'namespace::foo.bar.blade-name'
    ],

    /**
     * Only sync these views (when using sync all)
     *     - `only` take priority over `exclude
     *     - if same view listed in `exclude` it will still be excluded
     */
    'only' => [
        // 'namespace::foo.bar.blade-name'
    ],
];
bash
# Extract view from vendor
php artisan view:extract {view} {--force}

# Sync extracted views from vendor
php artisan view:sync {namespace?} {--check}