All Projects → sexym0nk3y → Laravel-5.3-Repository

sexym0nk3y / Laravel-5.3-Repository

Licence: other
Simple repository setup for Laravel 5.3

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Laravel-5.3-Repository

ai-cms
Free and open source Manga CMS (Deprecated!)
Stars: ✭ 35 (+105.88%)
Mutual labels:  laravel-framework, laravel5
opencore
OpenCore - Laravel for OpenCart
Stars: ✭ 42 (+147.06%)
Mutual labels:  laravel-framework, laravel5
Learn Laravel
Laravel 学习资料和开源项目集
Stars: ✭ 229 (+1247.06%)
Mutual labels:  laravel-framework, laravel5
Laravel Restaurant Pos
Restaurant POS
Stars: ✭ 27 (+58.82%)
Mutual labels:  laravel-framework, laravel5
laravel-docker-k8s
Laravel using Docker and Kubernetes
Stars: ✭ 60 (+252.94%)
Mutual labels:  laravel-framework, laravel5
laravel-api-example
💻 Build an API with Laravel 5
Stars: ✭ 47 (+176.47%)
Mutual labels:  laravel-framework, laravel5
nginx-virtual-host-bash-script
Nginx Virtual Host Bash Script
Stars: ✭ 35 (+105.88%)
Mutual labels:  laravel-framework, laravel5
teamo-ddd-example
Implementing Domain Driven Design in PHP using Laravel
Stars: ✭ 46 (+170.59%)
Mutual labels:  laravel-framework, laravel5
advance-blog-in-laravel-5.5-in-tdd
build blog with cool feature like Activity feed, Filter post, post subscription, mentioned user, notification, search with Algolia
Stars: ✭ 11 (-35.29%)
Mutual labels:  laravel-framework, laravel5
Auth Tests
Always-current tests for Laravel's authentication system. Curated by the community.
Stars: ✭ 230 (+1252.94%)
Mutual labels:  laravel-framework, laravel5
Employee Mgmt Laravel5.4 Adminlte
The project is using laravel 5.4 and adminlte
Stars: ✭ 141 (+729.41%)
Mutual labels:  laravel-framework
Olaindex
✨ Another OneDrive Directory Index
Stars: ✭ 2,061 (+12023.53%)
Mutual labels:  laravel-framework
Laravel Auth
Laravel 8 with user authentication, registration with email confirmation, social media authentication, password recovery, and captcha protection. Uses offical [Bootstrap 4](http://getbootstrap.com). This also makes full use of Controllers for the routes, templates for the views, and makes use of middleware for routing. The project can be stood u…
Stars: ✭ 2,692 (+15735.29%)
Mutual labels:  laravel-framework
Laravel User Activity
Monitor user activity easily!
Stars: ✭ 253 (+1388.24%)
Mutual labels:  laravel-framework
Laravel Analytics Event Tracking
Laravel package to easily send events to Google Analytics
Stars: ✭ 137 (+705.88%)
Mutual labels:  laravel-framework
Laravel 5.3 And Vue Js 2.0 Social Network
Social network built with Laravel 5.3 and Vue js 2.0
Stars: ✭ 137 (+705.88%)
Mutual labels:  laravel-framework
Laravel Tutorial
Laravel 中文新手书籍《Laravel 入门教程》的源代码
Stars: ✭ 136 (+700%)
Mutual labels:  laravel-framework
Blade
Use Blade templates without the full Laravel framework
Stars: ✭ 132 (+676.47%)
Mutual labels:  laravel-framework
laravel-5.3-app
🗺️ Get started with Laravel 5.3, Vue.js and Google Maps API
Stars: ✭ 28 (+64.71%)
Mutual labels:  laravel5
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+15700%)
Mutual labels:  laravel-framework

Laravel 5.3 Repositories

Simple repository setup for Laravel 5.3

Installation

  1. Copy BaseRepository.php into App/Repositories
  2. Copy repository.stub into App/Console/Commands/stubs
  3. Copy MakeRepositoryCommand.php into App/Console/Commands
  4. Add MakeRepositoryCommand:class into the App/Console/Kernel.php
class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        Commands\MakeRepositoryCommand::class,
    ];

Usage

The make:repository command automatically creates a new Repository into App\Repositories

php artisan make:repository NameRepo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].