Manage Albums and photos in a unique package, Quick to implement, Integration with your custom upload system, Polymorphic out of the box, A lots features that help you to have a perfect gallery in back end.
Quick Example:
Create an album
$albumInformation = [
'name' => 'New Album',
'description' => 'Description of my album'
];
Alby::album()->entity('User',1)->create($albumInformation);
Add Photo in an album
$photoInformations = [
'name_image' => 'nameeee.jpg',
'description' => 'Alby description',
'mime' => 'image/jpeg'
];
Alby::album($album_id)->photo()->add($photoInformations);
Check out the package on GitHub: https://github.com/fenos/Alby
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community