bit-es / base
This is bites package with HR module models that maybe used by any other models as its attributes
Requires
- php: ^8.0
- bezhansalleh/filament-shield: ^3.3
- bit-es/icons: ^1.0
- filament/filament: ^3.3
- illuminate/support: ^9.0|^10.0|^11.0|^12.0
- spatie/laravel-package-tools: ^1.15.0
- spatie/laravel-permission: ^6.20
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^8.0
- pestphp/pest: ^2.1
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is not auto-updated.
Last update: 2025-08-21 04:50:37 UTC
README
This repo can be used to scaffold a Filament plugin. Follow these steps to get started:
- Press the "Use this template" button at the top of this repo to create a new repo with the contents of this base.
- Run "php ./configure.php" to run a script that will replace all placeholders throughout all the files.
- 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.