├── .env.example ├── .gitattributes ├── .gitignore ├── Homestead.yaml ├── Vagrantfile ├── app ├── Buyer.php ├── Category.php ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── ApiController.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ └── ResetPasswordController.php │ │ ├── Buyer │ │ │ ├── BuyerCategoryController.php │ │ │ ├── BuyerController.php │ │ │ ├── BuyerProductController.php │ │ │ ├── BuyerSellerController.php │ │ │ └── BuyerTransactionController.php │ │ ├── Category │ │ │ ├── CategoryBuyerController.php │ │ │ ├── CategoryController.php │ │ │ ├── CategoryProductController.php │ │ │ ├── CategorySellerController.php │ │ │ └── CategoryTransactionController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── Product │ │ │ ├── ProductBuyerController.php │ │ │ ├── ProductBuyerTransactionController.php │ │ │ ├── ProductCategoryController.php │ │ │ ├── ProductController.php │ │ │ └── ProductTransactionController.php │ │ ├── Seller │ │ │ ├── SellerBuyerController.php │ │ │ ├── SellerCategoryController.php │ │ │ ├── SellerController.php │ │ │ ├── SellerProductController.php │ │ │ └── SellerTransactionController.php │ │ ├── Transaction │ │ │ ├── TransactionCategoryController.php │ │ │ ├── TransactionController.php │ │ │ └── TransactionSellerController.php │ │ └── User │ │ │ └── UserController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CustomThrottleRequests.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SignatureMiddleware.php │ │ ├── TransformInput.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Mail │ ├── UserCreated.php │ └── UserMailChanged.php ├── Policies │ ├── BuyerPolicy.php │ ├── ProductPolicy.php │ ├── SellerPolicy.php │ ├── TransactionPolicy.php │ └── UserPolicy.php ├── Product.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Scopes │ ├── BuyerScope.php │ └── SellerScope.php ├── Seller.php ├── Traits │ ├── AdminActions.php │ └── ApiResponser.php ├── Transaction.php ├── Transformers │ ├── BuyerTransformer.php │ ├── CategoryTransformer.php │ ├── ProductTransformer.php │ ├── SellerTransformer.php │ ├── TransactionTransformer.php │ └── UserTransformer.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sentry.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_02_15_060634_create_categories_table.php │ ├── 2017_02_15_060644_create_products_table.php │ ├── 2017_02_15_060654_create_transactions_table.php │ └── 2017_02_17_034324_category_product_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── .gitignore │ ├── 1.jpg │ ├── 2.jpg │ └── 3.jpg ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── readme.md ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── passport │ │ │ ├── AuthorizedClients.vue │ │ │ ├── Clients.vue │ │ │ └── PersonalAccessTokens.vue │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── emails │ ├── confirm.blade.php │ └── welcome.blade.php │ ├── home.blade.php │ ├── home │ ├── authorized-clients.blade.php │ ├── personal-clients.blade.php │ └── personal-tokens.blade.php │ ├── layouts │ └── app.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/.gitignore -------------------------------------------------------------------------------- /Homestead.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/Homestead.yaml -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/Buyer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Buyer.php -------------------------------------------------------------------------------- /app/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Category.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Buyer/BuyerCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Buyer/BuyerCategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Buyer/BuyerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Buyer/BuyerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Buyer/BuyerProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Buyer/BuyerProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Buyer/BuyerSellerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Buyer/BuyerSellerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Buyer/BuyerTransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Buyer/BuyerTransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Category/CategoryBuyerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Category/CategoryBuyerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Category/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Category/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Category/CategoryProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Category/CategoryProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Category/CategorySellerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Category/CategorySellerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Category/CategoryTransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Category/CategoryTransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Product/ProductBuyerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Product/ProductBuyerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Product/ProductBuyerTransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Product/ProductBuyerTransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Product/ProductCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Product/ProductCategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Product/ProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Product/ProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Product/ProductTransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Product/ProductTransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Seller/SellerBuyerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Seller/SellerBuyerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Seller/SellerCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Seller/SellerCategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Seller/SellerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Seller/SellerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Seller/SellerProductController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Seller/SellerProductController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Seller/SellerTransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Seller/SellerTransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Transaction/TransactionCategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Transaction/TransactionCategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Transaction/TransactionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Transaction/TransactionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Transaction/TransactionSellerController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/Transaction/TransactionSellerController.php -------------------------------------------------------------------------------- /app/Http/Controllers/User/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Controllers/User/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CustomThrottleRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/CustomThrottleRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/SignatureMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/SignatureMiddleware.php -------------------------------------------------------------------------------- /app/Http/Middleware/TransformInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/TransformInput.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Mail/UserCreated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Mail/UserCreated.php -------------------------------------------------------------------------------- /app/Mail/UserMailChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Mail/UserMailChanged.php -------------------------------------------------------------------------------- /app/Policies/BuyerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Policies/BuyerPolicy.php -------------------------------------------------------------------------------- /app/Policies/ProductPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Policies/ProductPolicy.php -------------------------------------------------------------------------------- /app/Policies/SellerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Policies/SellerPolicy.php -------------------------------------------------------------------------------- /app/Policies/TransactionPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Policies/TransactionPolicy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Product.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Scopes/BuyerScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Scopes/BuyerScope.php -------------------------------------------------------------------------------- /app/Scopes/SellerScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Scopes/SellerScope.php -------------------------------------------------------------------------------- /app/Seller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Seller.php -------------------------------------------------------------------------------- /app/Traits/AdminActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Traits/AdminActions.php -------------------------------------------------------------------------------- /app/Traits/ApiResponser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Traits/ApiResponser.php -------------------------------------------------------------------------------- /app/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transaction.php -------------------------------------------------------------------------------- /app/Transformers/BuyerTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/BuyerTransformer.php -------------------------------------------------------------------------------- /app/Transformers/CategoryTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/CategoryTransformer.php -------------------------------------------------------------------------------- /app/Transformers/ProductTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/ProductTransformer.php -------------------------------------------------------------------------------- /app/Transformers/SellerTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/SellerTransformer.php -------------------------------------------------------------------------------- /app/Transformers/TransactionTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/TransactionTransformer.php -------------------------------------------------------------------------------- /app/Transformers/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/Transformers/UserTransformer.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sentry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/sentry.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2017_02_15_060634_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2017_02_15_060634_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2017_02_15_060644_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2017_02_15_060644_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2017_02_15_060654_create_transactions_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2017_02_15_060654_create_transactions_table.php -------------------------------------------------------------------------------- /database/migrations/2017_02_17_034324_category_product_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/migrations/2017_02_17_034324_category_product_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/img/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/img/1.jpg -------------------------------------------------------------------------------- /public/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/img/2.jpg -------------------------------------------------------------------------------- /public/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/img/3.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/readme.md -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/components/passport/AuthorizedClients.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/js/components/passport/AuthorizedClients.vue -------------------------------------------------------------------------------- /resources/assets/js/components/passport/Clients.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/js/components/passport/Clients.vue -------------------------------------------------------------------------------- /resources/assets/js/components/passport/PersonalAccessTokens.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/js/components/passport/PersonalAccessTokens.vue -------------------------------------------------------------------------------- /resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/sass/_variables.scss -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/emails/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/emails/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/emails/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/emails/welcome.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/home/authorized-clients.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/home/authorized-clients.blade.php -------------------------------------------------------------------------------- /resources/views/home/personal-clients.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/home/personal-clients.blade.php -------------------------------------------------------------------------------- /resources/views/home/personal-tokens.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/home/personal-tokens.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuanDMeGon/RESTful-API-with-Laravel-Definitive-Guide/HEAD/webpack.mix.js --------------------------------------------------------------------------------