├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── pastable.php ├── pint.json └── src ├── Commands ├── CopyPastableCommand.php ├── CutPastableCommand.php └── PastableCommand.php ├── Helper ├── PastableLogger.php └── PastableUtils.php ├── Jobs ├── CopyPastableJob.php ├── CutPastableJob.php ├── Middleware │ └── AtomicJob.php └── PastableJob.php ├── Models └── Traits │ ├── CopyPastable.php │ ├── CutPastable.php │ └── Pastable.php └── PastableServiceProvider.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/composer.json -------------------------------------------------------------------------------- /config/pastable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/config/pastable.php -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/pint.json -------------------------------------------------------------------------------- /src/Commands/CopyPastableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Commands/CopyPastableCommand.php -------------------------------------------------------------------------------- /src/Commands/CutPastableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Commands/CutPastableCommand.php -------------------------------------------------------------------------------- /src/Commands/PastableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Commands/PastableCommand.php -------------------------------------------------------------------------------- /src/Helper/PastableLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Helper/PastableLogger.php -------------------------------------------------------------------------------- /src/Helper/PastableUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Helper/PastableUtils.php -------------------------------------------------------------------------------- /src/Jobs/CopyPastableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Jobs/CopyPastableJob.php -------------------------------------------------------------------------------- /src/Jobs/CutPastableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Jobs/CutPastableJob.php -------------------------------------------------------------------------------- /src/Jobs/Middleware/AtomicJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Jobs/Middleware/AtomicJob.php -------------------------------------------------------------------------------- /src/Jobs/PastableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Jobs/PastableJob.php -------------------------------------------------------------------------------- /src/Models/Traits/CopyPastable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Models/Traits/CopyPastable.php -------------------------------------------------------------------------------- /src/Models/Traits/CutPastable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Models/Traits/CutPastable.php -------------------------------------------------------------------------------- /src/Models/Traits/Pastable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/Models/Traits/Pastable.php -------------------------------------------------------------------------------- /src/PastableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elipZis/laravel-pastable-model/HEAD/src/PastableServiceProvider.php --------------------------------------------------------------------------------