File tree Expand file tree Collapse file tree 4 files changed +29
-3
lines changed
Expand file tree Collapse file tree 4 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ # Packages
2+ composer.phar
3+ vendor
4+ node_modules
5+
6+ # Environment
17.env
28.env.backup
39.env.production
10+
11+ # Build
412build
513dist
614compiled
15+
16+ # System/Editor
717.idea
18+
19+ # Leaf
20+ .hana
21+ .alchemy
822hot
9- vendor
10- node_modules
23+ storage /framework
24+ storage /logs
25+
26+ # Logs
1127npm-debug.log
1228yarn-error.log
Original file line number Diff line number Diff line change 99 */
1010class Controller extends \Leaf \Controller
1111{
12+ // You can define methods here that would be used
13+ // throughout your controller classes
14+ // public function someMethod() {}
1215}
Original file line number Diff line number Diff line change 1818 */
1919class Factory extends Base
2020{
21+ // You can define methods here that would be used
22+ // throughout your factory classes
23+ // public function someMethod() {}
2124}
Original file line number Diff line number Diff line change 88 * The base model provides a space to set attributes
99 * that are common to all models
1010 */
11- class Model extends \Leaf \Model {}
11+ class Model extends \Leaf \Model {
12+ // You can define methods here that would be used
13+ // throughout your model classes
14+ // public function someMethod() {}
15+ }
You can’t perform that action at this time.
0 commit comments