Resources are tables that need simple CRUD operations.
Laramanager will not automatically create migrations or alter your database schema. It was built to be very lightweight and flexible to the developer. So first a model and migration will need to be created for the resource before it can be added in Laramanager.
php artisan make:model Event --migration
Now this table can be added as a resource. Navigate to resources under the "System" navigation section.
Next click "Create".
After adding the resource, the "Fields" page will show.
This is where the editable table fields are added for this resource. More about this in the fields section. Once you have added the resource it will show up in the "Resources" list.
When created, this resource will automatically be added to the admin navigation. See navigation section for more information.