I discover this Spatie package, all works fine, but when I run the backup:list command, it doesn't show the list of the backups, I mean if I have done 3 backups for an app, it shows me only one line saying that I have 3 backups. I thought the list command would have returned the list of the backup files so that I could display them on the screen and setting links to download them.
So the only way to really retrieve the list of the backups is to read the content of the backup folder with the PHP basic commands ?
Or perhaps I haven't understood the spatie commands or bad read the documentation ?
@jlrdw Ok thank you, I have to learn how to explore the source code of packages, I really rarely do that.
But I don't speak about the list of apps backuped, but the number of backups for one app.
For example I run 5 times the command php artisan backup:run, and I'd like to display a list with the 5 backup zip files. I have done this very simply with Storage::disk('backups')->files('directory');.
I just thought that the spatie package would have a command to list each backup files for one app ;).