https://laracasts.com/discuss/channels/tips/repoist-laravel-5-repository-generator?page=1
following this one.
Repositories Without Schema
php artisan make:repository Task
Will output:
app/Repositories/Task/TaskRepository.php
app/Repositories/Task/EloquentTaskRepository.php
I want this same as it is above.
but when i run php artisan make:repository Task
it creates two folders.
app/Contracts/Task/TaskRepository.php (contract)
app/Repositories/Eloquent/EloquentTaskRepository.php
i want to to get rid of this.
please help
https://laracasts.com/discuss/channels/tips/repoist-laravel-5-repository-generator?page=1
following this one.
Repositories Without Schema
php artisan make:repository Task
Will output:
app/Repositories/Task/TaskRepository.php
app/Repositories/Task/EloquentTaskRepository.php
I want this same as it is above.
but when i run php artisan make:repository Task
it creates two folders.
app/Contracts/Task/TaskRepository.php (contract)
app/Repositories/Eloquent/EloquentTaskRepository.php
i want to to get rid of this.
please help