{"id":15106883,"url":"https://github.com/adifaidz/laravel-base-archived","last_synced_at":"2025-09-27T05:31:24.456Z","repository":{"id":56940821,"uuid":"78729735","full_name":"adifaidz/laravel-base-archived","owner":"adifaidz","description":"Laravel wrapper for commonly used package and crud generators for basic crud functionalities","archived":true,"fork":false,"pushed_at":"2017-04-04T01:46:27.000Z","size":2487,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-11-15T08:08:23.578Z","etag":null,"topics":["acl","base","bootstrap","crud-functionality","crud-generator","laravel","laravel-application","laravel-framework","laravel-package","laravel-wrapper","php","php7","vue"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adifaidz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-12T09:39:20.000Z","updated_at":"2023-01-28T02:05:53.000Z","dependencies_parsed_at":"2022-08-21T07:20:17.092Z","dependency_job_id":null,"html_url":"https://github.com/adifaidz/laravel-base-archived","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adifaidz%2Flaravel-base-archived","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adifaidz%2Flaravel-base-archived/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adifaidz%2Flaravel-base-archived/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adifaidz%2Flaravel-base-archived/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adifaidz","download_url":"https://codeload.github.com/adifaidz/laravel-base-archived/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234391379,"owners_count":18824809,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acl","base","bootstrap","crud-functionality","crud-generator","laravel","laravel-application","laravel-framework","laravel-package","laravel-wrapper","php","php7","vue"],"created_at":"2024-09-25T21:02:35.557Z","updated_at":"2025-09-27T05:31:19.094Z","avatar_url":"https://github.com/adifaidz.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base\n\nLaravel wrapper for commonly used package and crud generators for basic crud functionalities\n\n## Before you start, read this\n\n- This package\n\n  - Is a **Laravel (Currently 5.4) package**\n\n  - Is still under **heavy development** :loudspeaker: :construction:\n\n  - Uses mainly **[Laravel][1], [Vue][2], [Bootstrap][3] and [Laravel-Mix][8]**\n\n  - **Affects** some **settings** on installation :warning:\n\n  - **Uses** these **npm** packages:\n\n    - **admin-lte : ^2.3.8**\n    - **axios: ^0.15.2**\n    - **babel-plugin-transform-runtime: ^6.23.0**\n    - **babel-preset-stage-2: ^6.22.0**\n    - **bootstrap-sass: ^3.3.7**\n    - **eonasdan-bootstrap-datetimepicker: ^4.17.43**\n    - **font-awesome: ^4.7.0**\n    - **jquery: ^3.1.0**\n    - **laravel-mix: ^0.8.4**\n    - **lodash: ^4.17.4**\n    - **toastr: ^2.1.2**\n    - **vue: ^2.0.1**\n    - **vue-multiselect: 2.0.0-beta.13**\n    - **vue-resource: ^1.0.3**\n    - **vuetable-2: ^0.9.2**\n\n## Features\n\n- Ready to use base functionalities **(user profile, login, acl, etc )**\n\n- Create crud components **(views, controller, routes)** based on eloquent model\n\n- Debug using **[phpdebugbar][4]** and **[logviewer][5]** based on your **environment**\n\n- Clean project using **[clean][6]**\n\n- Easily create menus with **[laravel-menu][7]**\n\n## Installation\n\n- Install using **composer**\n\n  ```\n    composer require adifaidz/base\n  ```\n\n- Register the service provider to your **providers** array in **config/app.php**\n\n  ```\n    AdiFaidz\\Base\\Providers\\BaseServiceProvider::class,\n  ```\n\n- Run the **install** command using **artisan**, this will register guards, providers, password broker, route middlewares and middleware groups. It will also publish vue components, assets and bundling scripts and create route files.\n\n  ```\n    php artisan base:install\n  ```\n  \n- Add this to the **boot** method in **app\\Providers\\AppServiceProvider.php** to register all package routes\n\n  ```\n    use AdiFaidz\\Base\\Base;\n\n    ...\n\n    Base::routes();\n  ```\n\n- Change the auth users provider model in config/auth.php to\n\n  ```\n    'users' =\u003e [\n        'driver' =\u003e 'eloquent',\n        'model' =\u003e AdiFaidz\\Base\\BaseUser::class,\n    ],\n  ```\n\n- Then, replace the **current** ExceptionHandler in **bootstrap/app.php** with Base ExceptionHandler class.\n\n  ```\n    $app-\u003esingleton(\n        Illuminate\\Contracts\\Debug\\ExceptionHandler::class,\n        AdiFaidz\\Base\\Exceptions\\Handler::class\n    );\n  ```\n\n- After that, add this to the **map** method in **app\\Providers\\RouteServiceProvider.php** for generated package routes\n\n  ```\n    use AdiFaidz\\Base\\Base;\n\n    ...\n\n    Base::mapBaseRoutes();\n  ```\n\n- Then, **configure your database connection** and run **migrate**. Upon completion, tables for **users, roles, permissions** will be created\n\n  ```\n    php artisan migrate\n  ```\n\n- **Seed** the tables\n\n  ```\n    php artisan db:seed --class=\"AdiFaidz\\Base\\Seeders\\StartupSeeder\"\n  ```\n\n- And finally, **run**\n\n  ```\n    npm install \u0026\u0026 npm run watch\n\n    or\n\n    npm install \u0026\u0026 npm run dev\n  ```\n\n- **Start** up your **server** and go to\n\n  ```\n    http://localhost/login\n  ```\n\n## Todo :computer: :watch:\n\n- Create form and detail view based on model attributes\n\n- Fallback to **[mailtrap][9]** in **development environment**\n\n- Detailed documentation\n\n- Provide better flow\n\n[1]: https://laravel.com\n[2]: http://vuejs.org\n[3]: https://getbootstrap.com\n[4]: https://github.com/barryvdh/laravel-debugbar\n[5]: https://github.com/rap2hpoutre/laravel-log-viewer\n[6]: https://github.com/adifaidz/clean\n[7]: https://github.com/lavary/laravel-menu\n[8]: https://github.com/JeffreyWay/laravel-mix\n[9]: https://mailtrap.io\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadifaidz%2Flaravel-base-archived","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadifaidz%2Flaravel-base-archived","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadifaidz%2Flaravel-base-archived/lists"}