Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhonoryza/laravel-logdesk
laravel package for logdesk app
https://github.com/jhonoryza/laravel-logdesk
Last synced: about 1 month ago
JSON representation
laravel package for logdesk app
- Host: GitHub
- URL: https://github.com/jhonoryza/laravel-logdesk
- Owner: jhonoryza
- License: mit
- Created: 2023-12-03T17:23:13.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-01T11:42:32.000Z (11 months ago)
- Last Synced: 2024-04-02T07:22:41.422Z (9 months ago)
- Language: PHP
- Homepage: https://github.com/jhonoryza/logdesk/releases/latest
- Size: 201 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Logdesk
insipired by [spatie ray](https://github.com/spatie/laravel-ray) create free version with minimum features.
## Installation
install this package
```bash
composer require jhonoryza/logdesk --dev
```download desktop app here [https://github.com/jhonoryza/logdesk/releases/latest](https://github.com/jhonoryza/logdesk/releases/latest)
![image](./logdesk-2.png)
## Usage
```php
logdesk('ok'); // string
logdesk(new User()); // object
logdesk(['foo' => 'bar') // array
logdesk(true); // boolean
```you can pass multiple value
```php
logdesk('ok', ['foo' => 'bar'], new User());
```or you can have behaviour like `dd()` in laravel to die and dump
```php
logdeskDie('die');
```### Security
If you've found a bug regarding security please mail [[email protected]](mailto:[email protected]) instead of using the issue tracker.
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.