Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Mastering Laravel 10 Query Builder, Eloquent & Relationships, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:01:07
    Introduction
  • Урок 2. 00:02:03
    Course structure
  • Урок 3. 00:00:53
    Source code
  • Урок 4. 00:05:39
    Project & database setup
  • Урок 5. 00:02:35
    Database configuration file
  • Урок 6. 00:05:29
    What are migrations and how do they work?
  • Урок 7. 00:03:41
    Creating our first migration
  • Урок 8. 00:04:39
    Column modifiers
  • Урок 9. 00:06:42
    Running migrations & different options
  • Урок 10. 00:02:34
    Squashing migrations
  • Урок 11. 00:03:41
    Modifying Columns
  • Урок 12. 00:01:57
    Renaming Columns
  • Урок 13. 00:00:50
    Migrations Cleanup
  • Урок 14. 00:02:29
    Dropping Columns
  • Урок 15. 00:01:16
    Factories vs Seeders - What is the difference?
  • Урок 16. 00:04:37
    Defining our first Factory
  • Урок 17. 00:03:02
    Using a Factory through a Seeder
  • Урок 18. 00:01:22
    Using a Factory through Artisan Tinker
  • Урок 19. 00:06:47
    Defining our first Seeder
  • Урок 20. 00:04:15
    Using a JSON file to read Data for our Seeders
  • Урок 21. 00:00:56
    Calling Multiple Seeders
  • Урок 22. 00:06:20
    Primary & Foreign Keys
  • Урок 23. 00:06:29
    Introduction to the Query Builder
  • Урок 24. 00:03:41
    First, Value and Find Methods
  • Урок 25. 00:00:45
    Retrieving a List of Column Values
  • Урок 26. 00:06:15
    Inserts Through the Query Builder
  • Урок 27. 00:01:21
    Insert & Get Id Through the Query Builder
  • Урок 28. 00:06:37
    Updating Through the Query Builder
  • Урок 29. 00:03:00
    Deleting Through the Query Builder
  • Урок 30. 00:03:29
    Aggregates Methods
  • Урок 31. 00:02:31
    whereNot & orWhereNot
  • Урок 32. 00:01:50
    Determining if Records Exist
  • Урок 33. 00:01:38
    whereBetween & whereNotBetween Methods
  • Урок 34. 00:01:59
    Debugging Through the Query Builder
  • Урок 35. 00:06:10
    Database Transactions
  • Урок 36. 00:02:42
    Pessimistic Locking
  • Урок 37. 00:02:44
    Chunking Data
  • Урок 38. 00:04:09
    Streaming Results Lazily
  • Урок 39. 00:03:37
    Raw Methods
  • Урок 40. 00:03:51
    Ordering Through the Query Builder
  • Урок 41. 00:05:01
    Full Text indexes
  • Урок 42. 00:02:40
    Limit & Offset Through the Query Builder
  • Урок 43. 00:02:16
    Conditional Clauses
  • Урок 44. 00:01:50
    Removing Existing Ordering
  • Урок 45. 00:08:04
    Using the paginate() method
  • Урок 46. 00:01:47
    Using the simplePaginate() method
  • Урок 47. 00:04:19
    Using the cursorPaginate() method
  • Урок 48. 00:04:07
    Introduction to Eloquent
  • Урок 49. 00:13:38
    Eloquent Model Conventions
  • Урок 50. 00:04:57
    The $fillable And $guarded Properties
  • Урок 51. 00:02:53
    Building Queries
  • Урок 52. 00:08:39
    Retrieving Single Models
  • Урок 53. 00:05:14
    Inserting / Creating Models
  • Урок 54. 00:04:32
    Retrieving All Models
  • Урок 55. 00:04:35
    firstOrCreate & firstOrNew
  • Урок 56. 00:03:51
    Updating Models
  • Урок 57. 00:07:33
    Attribute Changes [isDirty,В isClean, &В wasChanged]
  • Урок 58. 00:04:16
    UpdateOrCreate & Upserting Models
  • Урок 59. 00:02:47
    Deleting Models
  • Урок 60. 00:05:40
    Soft Deleting Models
  • Урок 61. 00:02:44
    Pruning Models
  • Урок 62. 00:01:59
    Replicating Models
  • Урок 63. 00:07:46
    Global Scopes
  • Урок 64. 00:06:04
    Local Scopes
  • Урок 65. 00:03:59
    Dynamic Scopes
  • Урок 66. 00:02:09
    Using a Trait to store Scopes
  • Урок 67. 00:01:33
    What are Relationships?
  • Урок 68. 00:14:15
    One to One Relationship
  • Урок 69. 00:08:05
    One to Many / Belongs To Relationship
  • Урок 70. 00:16:16
    Many to Many Relationship
  • Урок 71. 00:02:45
    Eager Loading
  • Урок 72. 00:08:25
    Has one Through Relationship
  • Урок 73. 00:06:02
    Has One of Many Relationship
  • Урок 74. 00:07:15
    Has Many Through Relationship
  • Урок 75. 00:01:18
    What are Polymorphic Relationships?
  • Урок 76. 00:10:01
    One to One Polymorphic Relationship
  • Урок 77. 00:09:03
    One to Many Polymorphic Relationship
  • Урок 78. 00:02:42
    One of Many Polymorphic Relationship
  • Урок 79. 00:07:01
    Many to Many Polymorphic Relationship
  • Урок 80. 00:01:54
    Project Setup
  • Урок 81. 00:03:18
    Installing Laravel Breeze
  • Урок 82. 00:08:31
    Defining Migrations
  • Урок 83. 00:05:46
    Defining Models / Relationships
  • Урок 84. 00:01:50
    Creating Models, Controllers, Factories & Migrations
  • Урок 85. 00:09:59
    Inserting Data Using Factories & Seeders
  • Урок 86. 00:04:14
    Setting up Article Routes
  • Урок 87. 00:03:04
    Setting up The Frontend Pages
  • Урок 88. 00:08:49
    The index() Method
  • Урок 89. 00:09:50
    The show() Method
  • Урок 90. 00:16:47
    The create() & store() Methods
  • Урок 91. 00:12:20
    The edit() & update() Methods
  • Урок 92. 00:02:44
    The destroy() method
  • Урок 93. 00:04:43
    Using Policies For Unauthorized Users