PHP code example of dkart / crud-maker
1. Go to this page and download the library: Download dkart/crud-maker library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dkart / crud-maker example snippets
php artisan vendor:publish --provider="DKart\CrudMaker\CrudMakerServiceProvider"
app
└── Filters
├── BaseFilters.php
└── Filterable.php
php artisan make:crud
app
├── Http
│ ├── Controllers
│ │ └── EntityController.php
│ ├── Requests
│ │ └── Entity
│ │ └── EntityRequest.php
│ └── Resources
│ └── Entity
│ ├── EntityCollection.php
│ └── EntityResource.php
├── Models
│ ├── Entity.php
├── Repositories
│ └── EntityRepository.php
└── Services
└── EntityService.php
database
└── factories
└── EntityFactory.php
tests
└── Feature
└── EntityTest.php