Download the PHP package shubhcredit/ore without Composer
On this page you can find all versions of the php package shubhcredit/ore. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download shubhcredit/ore
More information about shubhcredit/ore
Files in shubhcredit/ore
Package ore
Short Description Ore for the laravel, it make easy and fast development
License
Informations about the package ore
Laravel Ore Package
About Ore Package
This is the package which help to fast API development.
How it support ?
- By use it less code
- It is very easy to use
- Only define the model file
- Get resource task automated like
- List, save, show, edit, update and delete
When we use it ?
- Best use of the Ore is automate the crud of your module
- For example : some module only want crud on that
- Then use it like , category, subcategory, country, city, state, class, department etc
How to install it ?
-
Very simple to install it using the composer
-
After intall verify by hit the api route as
- Response will as
How to use it ?
- Create migration and model
-
Then add your Ore property in your model file as
- Explanation :
- 'name' column name
- 'component' which type of data will be store
- 'required' use to show on input field label
- 'orevl' define the laravel input validation
-
'enum' add enum value , it save key in db it show mapped value
- In above example we take the category module
- Which has relation with the group and department module
-
Define the relation as
- Now define the your module route as
-
Use the controller in your route file
- Define resource reoute prifix with 'ore'
Note :
- ore prefix is mendetory in the route
How to use permission ?
Very simple to use the permission in the ore package
Ore gave these permission as
This key will available in each API response which is use on frontend creation
Use of this permission
- view denote to view
- create denote to get meta info to make the create form
- save denote to save the form data
- edit denote to get meta info and data to make edit form
- update denote to update form data
- delete denote to delete the data
Define the permission
To define the permission make the method in the model file ore will automatically fetch, follow these step to define the method :-
- Use 'oreCan' prifix in the method name of permission for example view permission then method name will be as 'oreCanView'.
- Function have not parameter
- Function return bool i.e. ture/false
Take an example as
Note :: Defult value of the all permission is ture until user defined method overwrite it.