bit-es/base

This is bites package with HR module models that maybe used by any other models as its attributes

v2.0.2 2025-08-21 04:46 UTC

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This repo can be used to scaffold a Filament plugin. Follow these steps to get started:

  1. Press the "Use this template" button at the top of this repo to create a new repo with the contents of this base.
  2. Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
  3. Make something great!

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

Installation

You can install the package via composer:

composer require bit-es/base

You can publish and run the migrations with:

php artisan vendor:publish --tag=":package_slug-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag=":package_slug-config"

Optionally, you can publish the views using

php artisan vendor:publish --tag=":package_slug-views"

This is the contents of the published config file:

return [
];

Usage

$variable = new Bites\Hrm();
echo $variable->echoPhrase('Hello, Bites!');

To manage Base Resources

return $panel ->plugins([ \Bites\Base\BasePlugin::make(), ])

To use Camera for snapshot to a model and filament resource

In any model

use Bites\Base\Traits;

class <your model> extends Model
{
    use Traits\HasCamera;
    ......
}

In the filament resource for that model

public static function getRelations(): array
{
    return [
        \Bites\Base\Filament\Base\Resources\SnapshotResource\RelationManagers\CameraRelationManager::make(                [
                'withValues' => [
                    'photo_tag' => 'Before', //example of a tag
                    'title' => 'Take Pic', // example of title
                    'snapshot' => true, 
                    'filepath' => 'test', // image path; defaults to public path,'private/test' save it to test folder in private.
                ],
            ]),
    ];
}

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.