Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай RESTful API with Laravel: Build a real API with Laravel, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:33
    About the Instructor and the Course
  2. Урок 2. 00:02:34
    Taking Advantage of the Course and Contents
  3. Урок 3. 00:02:34
    Downloading and Installing PHP with XAMPP
  4. Урок 4. 00:02:11
    Downloading and Installing Composer
  5. Урок 5. 00:01:49
    Downloading and Installing Virtual Box
  6. Урок 6. 00:02:02
    Downloading and Installing Vagrant
  7. Урок 7. 00:02:25
    Downloading and Installing Sublime Text 3
  8. Урок 8. 00:03:59
    Downloading and Installing Github Shell
  9. Урок 9. 00:03:28
    Downloading and Installing Node and NPM
  10. Урок 10. 00:02:50
    Downloading and Installing Postman to Test the Laravel RESTful API
  11. Урок 11. 00:01:58
    Obtaining Laravel Using Composer
  12. Урок 12. 00:01:27
    Adding Laravel Homestead as a Dependency for The Laravel Project
  13. Урок 13. 00:04:21
    Preparing and Configuring Laravel Homestead
  14. Урок 14. 00:02:19
    Adding the Virtual Domain on The System
  15. Урок 15. 00:04:50
    Using Vagrant to Manage the Laravel Homestead Virtual Machine
  16. Урок 16. 00:03:34
    Keep The Laravel Project Updated
  17. Урок 17. 00:01:36
    Installing the Package Control
  18. Урок 18. 00:02:19
    Creating and Using Projects
  19. Урок 19. 00:03:01
    Installing and Using SublimeCodeIntel to Resolve Laravel and RESTful API classes
  20. Урок 20. 00:02:09
    Installing and Using SideBarEnhancement
  21. Урок 21. 00:02:16
    Installing and Using SublimeLinter for PHP
  22. Урок 22. 00:04:01
    Installing and Using PHPCompanion to Auto-import Laravel Definitions
  23. Урок 23. 00:04:16
    Understanding the RESTful API Resources (Models) and its Relationships
  24. Урок 24. 00:03:29
    Understanding the Main End-Points for the RESTful API
  25. Урок 25. 00:07:30
    Discovering the Laravel Structure
  26. Урок 26. 00:04:54
    Discovering the Laravel PHP Artisan Commands
  27. Урок 27. 00:04:03
    Configuring the Laravel Environment Variables
  28. Урок 28. 00:03:02
    Understanding the Laravel Routes System for RESTful APIs
  29. Урок 29. 00:04:45
    Creating Initial Laravel Structures for The Models and Its Migrations
  30. Урок 30. 00:03:35
    Creating an Initial Laravel Structure for The Controllers
  31. Урок 31. 00:06:51
    Creating Some End-Point for the RESTful API Using Laravel Resource Routes
  32. Урок 32. 00:02:17
    Implementing The Properties for Category
  33. Урок 33. 00:03:46
    Implementing The Properties for Product
  34. Урок 34. 00:01:18
    Implementing The Properties for Transaction
  35. Урок 35. 00:05:43
    Implementing The Properties for User
  36. Урок 36. 00:05:30
    Implementing The Relationships Between Models
  37. Урок 37. 00:02:43
    Solving a Common Issue with the Laravel Migrations
  38. Урок 38. 00:02:28
    Implementing The Migration for Users
  39. Урок 39. 00:01:11
    Implementing The Migration for Categories
  40. Урок 40. 00:02:02
    Implementing The Migration for Products
  41. Урок 41. 00:01:37
    Implementing The Migration for Transactions
  42. Урок 42. 00:04:46
    Creating the Migration for The Pivot Table
  43. Урок 43. 00:03:23
    Creating The Laravel Factory for User
  44. Урок 44. 00:01:27
    Creating The Factory for Category
  45. Урок 45. 00:03:52
    Creating The Factory for Product
  46. Урок 46. 00:04:54
    Creating The Factory for Transaction
  47. Урок 47. 00:06:06
    Using The Factories from The DatabaseSeeder of Laravel
  48. Урок 48. 00:05:11
    Executing The Migrations and Seeder using Artisan from Laravel
  49. Урок 49. 00:02:52
    Implementing The Index Method for UserController
  50. Урок 50. 00:02:30
    Implementing The Show Method for UserController
  51. Урок 51. 00:07:31
    Implementing The Store Method for UserController
  52. Урок 52. 00:08:26
    Implementing The Update Method for UserController
  53. Урок 53. 00:01:39
    Implementing The Destroy Method for UserController
  54. Урок 54. 00:02:44
    Implementing The Index Method for BuyerController
  55. Урок 55. 00:01:35
    Implementing The Show Method for BuyerController
  56. Урок 56. 00:02:16
    Implementing The Index Method for SellerController
  57. Урок 57. 00:01:34
    Implementing The Show Method for SellerController
  58. Урок 58. 00:05:27
    Defining Mutators and Accessor for Models
  59. Урок 59. 00:05:54
    Generalizing The Response Methods
  60. Урок 60. 00:03:10
    Using The Generalized Methods
  61. Урок 61. 00:01:54
    Using The Generalized Methods for Error Responses
  62. Урок 62. 00:04:37
    Returning Validation Errors as a JSON Response
  63. Урок 63. 00:03:00
    Returning Model Not Found Errors as a JSON Response
  64. Урок 64. 00:02:43
    Handling AuthenticationException
  65. Урок 65. 00:02:09
    Handling AuthorizationException
  66. Урок 66. 00:02:03
    Handling NotFoundHttpException
  67. Урок 67. 00:02:16
    Handling MethodNotAllowedHttpException
  68. Урок 68. 00:01:34
    Handling General HttpException
  69. Урок 69. 00:04:11
    Catching Exceptions When Removing Related Resources
  70. Урок 70. 00:04:29
    Handling Unexpected Exceptions
  71. Урок 71. 00:02:51
    Using The Laravel Implicit Model Binding for Some Methods
  72. Урок 72. 00:04:43
    Resolving Buyer Using Laravel Global Scopes
  73. Урок 73. 00:02:01
    Resolving Seller Using Laravel Global Scopes
  74. Урок 74. 00:02:16
    Modifying the Migrations for Soft Deleting
  75. Урок 75. 00:03:15
    Using soft Deleting for All the Models
  76. Урок 76. 00:03:10
    Implementing the Index Method for CategoryController
  77. Урок 77. 00:01:25
    Implementing the Show Method for CategoryController
  78. Урок 78. 00:03:03
    Implementing the Store Method for CategoryController
  79. Урок 79. 00:04:10
    Implementing the Update Method for CategoryController
  80. Урок 80. 00:02:02
    Implementing the Destroy Method for CategoryController
  81. Урок 81. 00:02:27
    Implementing the Index Method for ProductController
  82. Урок 82. 00:01:17
    Implementing the Show Method for ProductController
  83. Урок 83. 00:04:26
    Implementing the Index Method for TransactionCategoryController
  84. Урок 84. 00:04:25
    Implementing the Index Method for TransactionSellerController
  85. Урок 85. 00:02:55
    Implementing the Index Method for BuyerTransactionController
  86. Урок 86. 00:06:40
    Implementing the Index Method for BuyerProductController
  87. Урок 87. 00:05:08
    Implementing the Index Method for BuyerSellerController
  88. Урок 88. 00:05:31
    Implementing the Index Method for BuyerCategoryController
  89. Урок 89. 00:02:43
    Implementing the Index Method for CategoryProductController
  90. Урок 90. 00:03:43
    Implementing the Index Method for CategorySellerController
  91. Урок 91. 00:05:16
    Implementing the Index Method for CategoryTransactionController
  92. Урок 92. 00:05:24
    Implementing the Index Method for CategoryBuyerController
  93. Урок 93. 00:01:48
    Removing the Pivot Table from the Results
  94. Урок 94. 00:03:13
    Implementing the Index Method for SellerTransactionController
  95. Урок 95. 00:02:22
    Implementing the Index Method for SellerCategoryController
  96. Урок 96. 00:03:04
    Implementing the Index Method for SellerBuyerController
  97. Урок 97. 00:02:51
    Implementing the Index Method for SellerProductController
  98. Урок 98. 00:07:32
    Implementing the Store Method for SellerProductController
  99. Урок 99. 00:07:19
    Implementing the Update Method for SellerProductController
  100. Урок 100. 00:02:16
    Implementing the Destroy Method for SellerProductController
  101. Урок 101. 00:04:24
    [Challenge] Implementing the Index Operation of ProductTransaction
  102. Урок 102. 00:04:18
    [Challenge] Implementing the Index Operation of ProductBuyer
  103. Урок 103. 00:04:18
    [Challenge] Implementing the Index Operation of ProductCategory
  104. Урок 104. 00:07:43
    Implementing the Update Operation of ProductCategory
  105. Урок 105. 00:02:34
    Implementing the Destroy Operation of ProductCategory
  106. Урок 106. 00:11:54
    Implementing the Store Operation for ProductBuyerTransaction
  107. Урок 107. 00:03:14
    Handling the Products Availability Using Events
  108. Урок 108. 00:03:31
    Preparing the API for Images Uploading
  109. Урок 109. 00:04:11
    Storing an Image When Creating a Product
  110. Урок 110. 00:02:33
    Removing the Image When Deleting a Product
  111. Урок 111. 00:04:26
    Updating the Image When Editing a product
  112. Урок 112. 00:06:16
    Preparing the Laravel Project for Email Sending
  113. Урок 113. 00:05:38
    Implementing the Verification System
  114. Урок 114. 00:01:48
    Creating the Laravel Mailable for User Created
  115. Урок 115. 00:04:27
    Implementing the UserCreated Mailable
  116. Урок 116. 00:03:32
    Send Verification Email Using Events
  117. Урок 117. 00:02:51
    Solving the Problem with Factories
  118. Урок 118. 00:01:19
    Creating the Mailable for User Mail Changed
  119. Урок 119. 00:02:04
    Implementing the UserMailChanged Mailable
  120. Урок 120. 00:03:25
    Send Verification for Email Changed Using Events
  121. Урок 121. 00:03:23
    Re-sending the Verification Email If Requested
  122. Урок 122. 00:03:25
    Dealing with Failing-Prone Actions
  123. Урок 123. 00:09:23
    Using Laravel Markdown Mailables
  124. Урок 124. 00:05:35
    About the Middleware and How it Works in Laravel
  125. Урок 125. 00:09:03
    Creating a Custom Middleware
  126. Урок 126. 00:04:22
    About the Rate Limiting in Laravel and the Details
  127. Урок 127. 00:03:30
    [Optional] Customizing the Response for “Too Many Attempts”
  128. Урок 128. 00:05:36
    About Transformers and Why to Use It
  129. Урок 129. 00:03:12
    Preparing the Laravel Project for Data Transforming
  130. Урок 130. 00:07:36
    Creating the Transformer for User
  131. Урок 131. 00:02:25
    Creating the Transformer for Seller and Buyer
  132. Урок 132. 00:01:20
    Creating the Transformer for Category
  133. Урок 133. 00:02:02
    Creating the Transformer for Transaction
  134. Урок 134. 00:02:46
    Creating the Transformer for Product
  135. Урок 135. 00:03:10
    Linking the Models with its Respective Transformer
  136. Урок 136. 00:10:07
    Returning the New Transformed Responses
  137. Урок 137. 00:06:19
    Sorting Results by Any Attribute
  138. Урок 138. 00:03:09
    Understanding an Issue with Sorted Responses
  139. Урок 139. 00:03:31
    Improving the Transformations to Solve the Problem
  140. Урок 140. 00:02:45
    Implementing the Solution Using Transformers
  141. Урок 141. 00:06:42
    Filtering Responses Based on Attributes
  142. Урок 142. 00:03:58
    About Pagination
  143. Урок 143. 00:08:27
    Paginating Already Built Collections
  144. Урок 144. 00:03:23
    Allowing Custom Page Size
  145. Урок 145. 00:04:14
    Implementing the Cache System
  146. Урок 146. 00:06:18
    The Caching System and the Query Parameters
  147. Урок 147. 00:03:39
    What is and Why to Use HATEOAS
  148. Урок 148. 00:06:43
    Implementing HATEOAS Hypermedia Controls for Category Instances
  149. Урок 149. 00:03:11
    Implementing HATEOAS Hypermedia Controls for Product Instances
  150. Урок 150. 00:02:26
    Implementing HATEOAS for Transaction Instances
  151. Урок 151. 00:01:57
    Implementing HATEOAS for User Instances
  152. Урок 152. 00:02:39
    Understanding Two Problems with Transformations and Validations
  153. Урок 153. 00:05:53
    Creating and Using a Middleware to Solve the Problem
  154. Урок 154. 00:04:04
    Solving the First Problem Using the Middleware
  155. Урок 155. 00:02:39
    Improving the Transformations to Solve the Second Problem
  156. Урок 156. 00:07:54
    Improving the Middleware to Solve the Second Problem
  157. Урок 157. 00:02:29
    Why is It Required for Our API
  158. Урок 158. 00:03:06
    Creating the Additional Authentication Structure
  159. Урок 159. 00:03:36
    Tuning Some Structures to Avoid Inconsistences
  160. Урок 160. 00:05:41
    About CSRF and Handling CSRF Exceptions in Laravel
  161. Урок 161. 00:08:01
    Returning HTML and Redirections When Required
  162. Урок 162. 00:03:52
    About OAuth2 and Security on APIs
  163. Урок 163. 00:01:55
    What is Laravel Passport
  164. Урок 164. 00:01:59
    Preparing the Laravel Project to Use Laravel Passport
  165. Урок 165. 00:02:33
    Using the Migrations of Laravel Passport
  166. Урок 166. 00:03:00
    Installing Laravel Passport Definitively on the API
  167. Урок 167. 00:02:09
    Making Users Authenticatable Through API Tokens
  168. Урок 168. 00:03:21
    Registering the Required Routes
  169. Урок 169. 00:01:38
    Configuring the Authentication System
  170. Урок 170. 00:03:24
    Defining the Expiration Time for the Tokens
  171. Урок 171. 00:06:18
    Using client_credentials Grant to Protect Some Routes
  172. Урок 172. 00:03:25
    How to Obtain and Use Tokens Using Client Credentials
  173. Урок 173. 00:05:38
    Protecting All the Routes
  174. Урок 174. 00:04:48
    Using the Password Grant Type
  175. Урок 175. 00:08:11
    Preparing the API to Use the Passport Components
  176. Урок 176. 00:05:05
    Creating the Views to Manage the Personal Tokens
  177. Урок 177. 00:02:41
    About the Personal Tokens and How to Use It
  178. Урок 178. 00:07:57
    Allowing the Management of API Clients
  179. Урок 179. 00:09:38
    About the Authorization Code Grant Type
  180. Урок 180. 00:05:56
    Using the Implicit Grant Type
  181. Урок 181. 00:05:20
    Refreshing Tokens
  182. Урок 182. 00:03:09
    What are Scopes on OAuth2?
  183. Урок 183. 00:05:51
    Registering Some Required Scopes for the API
  184. Урок 184. 00:03:55
    Registering the Laravel Passport Middleware to Check Scopes
  185. Урок 185. 00:04:43
    Restricting the Action that Needs the “purchase-product” Scope
  186. Урок 186. 00:05:28
    Restricting the Actions that Need the “manage-products” Scope
  187. Урок 187. 00:03:52
    Restricting the Actions that Need the “manage-account” Scope
  188. Урок 188. 00:08:34
    Restricting the Actions that Need the “read-general” Scope
  189. Урок 189. 00:03:42
    About the Final Security Layer
  190. Урок 190. 00:04:05
    What are Policies and Gates on Laravel?
  191. Урок 191. 00:07:43
    Implementing the Restrictions Over Buyer
  192. Урок 192. 00:07:16
    Implementing the Restrictions Over Seller
  193. Урок 193. 00:07:33
    The Restrictions over User
  194. Урок 194. 00:05:01
    Implementing the Restrictions Over Transaction
  195. Урок 195. 00:05:05
    Implementing the Restrictions Over Product
  196. Урок 196. 00:06:15
    Allowing All Actions for Admin Users
  197. Урок 197. 00:08:43
    Allowing Remaining Actions ONLY Admin Users Can Do
  198. Урок 198. 00:04:11
    About CORS
  199. Урок 199. 00:01:35
    Installing the CORS Package for Laravel
  200. Урок 200. 00:03:35
    Configuring the CORS Package
  201. Урок 201. 00:04:19
    Allowing CORS Only for the API
  202. Урок 202. 00:05:27
    Allowing CORS on Error Responses Too
  203. Урок 203. 00:06:05
    Identifying an Authenticated User in the RESTful API
  204. Урок 204. 00:03:31
    About the Upgrading Process to Laravel 5.5
  205. Урок 205. 00:04:24
    Upgrading to Laravel 5.5 Along With Dependencies
  206. Урок 206. 00:06:30
    Upgrading the Source Code According to Laravel 5.5
  207. Урок 207. 00:05:20
    Preparing the Environment to Upgrade
  208. Урок 208. 00:03:37
    Obtaining Laravel 5.6
  209. Урок 209. 00:02:40
    Installing Updated Dependencies
  210. Урок 210. 00:05:42
    Solving Issues and Updating the Project Structure
  211. Урок 211. 00:03:51
    Preparing the development environment to upgrade
  212. Урок 212. 00:04:52
    Installing Laravel 5.7 an upgrading dependencies for the RESTful API
  213. Урок 213. 00:05:25
    Upgrading the components and structures
  214. Урок 214. 00:01:42
    Thanks for Be Here!