ترفند های برنامه نویسی
-
دی- 1401 -12 دی
تفاوت hasMany با belongsToMany
One to many(hasMany): A user has many(can have many) article. So, Many article belongs to one user. Many to many(BelongsToMany): A…
گوش دهید.. -
8 دی
کاربرد except() در @foreach
In statement “except($category -> id)”, using method “except()”,you can ignore a variable and separate it from the loop. For example,…
گوش دهید.. -
6 دی
استفاده از روابط WhereHas و orWhereHas در Eloquent
(whereHas – orWhereHas) are 2 Options for Access Eloquent Relationships. Retrieve posts with at least comment containing words like keyword……
گوش دهید.. -
4 دی
تابع fullUrl() در لاراول
With “request()->fullUrl()” in #laravel you can get to the link where you sent the request. And if needed, you can save it…
گوش دهید.. -
3 دی
استفاده از $loop->depth در لاراول
In Laravel’s recursion function, you can access the depth by using the variable $loop -> depth , and then put…
گوش دهید.. -
2 دی
استفاده از شرط های شخصی سازی شده در blade لاراول
You may consider adding a custom blade directive. Add something like this to AppServiceProvider boot() function For instance, you might…
گوش دهید.. -
1 دی
استفاده از Str::limit در لاراول
.The provided string is truncated by the Str::limit method to the predetermined length وقتی می خواهیم برای یک رشته (string)…
گوش دهید.. -
آذر- 1401 -30 آذر
استفاده از تابع Str::mask() در لاراول
There is a “Str::mask()” function that uses a repeated character, such “*,” to mask a section of the text همون…
گوش دهید..