PHP code example of portavice / bladestrap

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

    

portavice / bladestrap example snippets


  use Portavice\Bladestrap\Support\Options;

  // Array with custom attributes
  Options::fromArray(
        [
            1 => 'One',
            2 => 'Two',
        ],
        static fn ($optionValue, $label) => [
            'data-value' => $optionValue + 2,
        ]
    );
  

  use Portavice\Bladestrap\Support\Options;

  // All enum cases with labels based on the value
  Options::fromEnum(MyEnum::class);

  // ... with labels based on the name
  Options::fromEnum(MyEnum::class, 'name');

  // ... with labels based on the result of the myMethod function
  Options::fromEnum(MyEnum::class, 'myMethod');

  // Only a subset of enum cases
  Options::fromEnum([MyEnum::Case1, MyEnum::Case2]);
  

  use Portavice\Bladestrap\Support\Options;

  // Array of models with labels based on a column or accessor
  Options::fromModels([$user1, $user2, ...$moreUsers], 'name');

  // Collection of models with labels based on a column or accessor
  Options::fromModels(User::query()->get(), 'name');

  // ... with labels based on a Closure
  Options::fromModels(
      User::query()->get(),
      static fn (User $user) => sprintf('%s (%s)', $user->name, $user->id)
  );

  // ... with custom attributes for <option>s using a \Closure defining an ComponentAttributeBag
  Options::fromModels(User::query()->get(), 'name', static function (User $user) {
      return (new ComponentAttributeBag([]))->class([
          'user-option',
          'inactive' => $user->isInactive(),
      ]);
  });

  // ... with custom attributes for <option>s using a \Closure defining an array of attributes
  Options::fromModels(User::query()->get(), 'name', fn (User $user) => [
      'data-title' => $user->title,
  ]);
  

use Portavice\Bladestrap\Support\Options;

$options = Options::fromModels(User::query()->get(), 'name')
    ->sortAlphabetically() // call sort for current options
    ->prepend('all', '') // adds an option with an empty value before first option
    ->append('label for last option', 'value') // adds an option after the last option
    ->prependMany([ // adds options before the first option (value => label)
        'value-1' => 'first prepended option',
        'value-2' => 'second prepended option',
    ]);

use Portavice\Bladestrap\Support\ValueHelper;

ValueHelper::setDefaults([
    'filter.name' => 'default',
])

use Illuminate\Http\Request;
use Illuminate\Support\Arr;

$configFile = [
    'bladestrap' => File;
    return Arr::get($configFile, $key, $default);
}

$request = Request::capture();
function request(array|string|null $key = null, mixed $default = null): mixed
{
    global $request;
    return $key === null ? $request : $request->input($key, $default);
}

use Illuminate\View\Factory;
use Portavice\Bladestrap\Macros\ComponentAttributeBagExtension;

// Register macros as BladestrapServiceProvider would do.
ComponentAttributeBagExtension::registerMacros();

/* @var Factory $viewFactory */
// Add components in bs namespace to your views.
$viewFactory->addNamespace('bs', __DIR__ . '/../vendor/portavice/bladestrap/resources/views');
bash
php artisan vendor:publish --tag="bladestrap-config"
bash
php artisan vendor:publish --tag="bladestrap-views"