It needs 4 years from initial idea to implementation (v4). During its development most of the focus is on working Classes that can generate code. For that reason there was a mess in codebase and its hardly readable by other developers to contribute.
Version 5 will be a complete rewrite of the entire codebase with a guideline to developers who want to contribute
V4 stick with DbReader component which support only MySQL
database.
In v5 our plan is to make LaraCrud
independent from MySQL
.
LaraCrud
Should depend on RepositoryInterface
to get its necessary data.
You can implement your own Repository and register it on config/laracrud.php
like below
'binds'=> [
\LaraCrud\Contracts\DatabaseContract::class => \LaraCrud\Repositories\DatabaseRepository::class,
\LaraCrud\Contracts\TableContract::class => \LaraCrud\Repositories\TableRepository::class,
\LaraCrud\Contracts\ColumnContract::class => \LaraCrud\Repositories\ColumnRepository::class,
If you defined a Full Text search index for your table. Then while generating
your model necessary FullTextSearch
code will be integrated into your Model.
When you create Controller/View files based on this Model, Search functionality will be there as well.
So you do not have to write anything to implement your FullTextSearch
Now you can able to manage how your Post
index.blade.php
will look like.
You can select Table/Card template also can able to select which column you want to show on your
Card\Table and which order.
- Rewrite the
TableRepository
[Done] - Implement
TableRepository
it onCrud\Model
and update theConsole\Model
[Done] - Create new
ControllerRepository
[Done] - Implement
ControllerRepository
in Console and Crud [Done] - Complete
View\TableRepository
class - Complete
View\IndexRepository
, - Complete
View\PageRepository
- Implement all newly created view Repositories onto View Blade file creation.
- Rewrite the Request Rules [Done]
- Rewrite the Route Generation to Laravel 8 compatible
- Remove the Dingo API resources and Create Laravel Built in API resources [Done]
- Writing Test Case [Done]
- Writing Factory For Laravel 8 [Done]
- Writing the Laravel 8 Resource API [Done]