PHP code example of pixinvent / vuexy-laravel-bootstrap-jetstream

1. Go to this page and download the library: Download pixinvent/vuexy-laravel-bootstrap-jetstream 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/ */

    

pixinvent / vuexy-laravel-bootstrap-jetstream example snippets




namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Illuminate\Pagination\Paginator;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     */
    public function register(): void
    {
        //
    }

    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        Paginator::useBootstrap();
    }
}
bash
// without teams support

php artisan jetstream:install livewire

or

// with teams support

php artisan jetstream:install livewire --teams
bash
// without teams support

php artisan jetstream_vuexy:swap livewire


or

// with teams support

php artisan jetstream_vuexy:swap livewire --teams


npm install && npm run build

or  

yarn && yarn build


php artisan migrate