-
Updated
Jun 18, 2020 - PHP
laravel-5-package
Here are 953 public repositories matching this topic...
-
Updated
May 22, 2020 - PHP
Document Constraints
-
Updated
Jun 16, 2020 - PHP
According to the documentation in ChatMember class
@method string getStatus() (Optional). The member's status in the chat. Can be “creator”, “administrator”, “member”, “left” or “kicked”
getStatus() should return the member's status, but actually there is a conflicting getStatus() in BaseObject that returns the status of the request.
As a workaround, get('status') re
I'm trying to use prototype example from documentation.
$form = $this->form($this->getFormClass(), [
'method' => 'POST',
'autocomplete' => 'off',
'model' => [
'title' => 'Test',
'tags' => [
['name_a' => '1', 'name_b' => '2'],
['name_a' => '3', 'name_b' => '4'],
],
],
'url' => route($this->type . '.update', [
'id' => $id
])
]);
$this
->a
- https://www.youtube.com/watch?v=Hfgcg09srSo at around 35:00
-
Updated
Jun 18, 2020 - PHP
-
Updated
Jun 7, 2020 - PHP
-
Updated
May 5, 2020 - PHP
-
Updated
Apr 25, 2020 - PHP
-
Updated
Jun 24, 2020 - PHP
-
Updated
Oct 15, 2019 - PHP
-
Updated
Jun 6, 2020 - PHP
-
Updated
Apr 14, 2020 - PHP
-
Updated
May 21, 2020 - PHP
-
Updated
Jan 15, 2019 - PHP
-
Updated
Aug 15, 2019 - PHP
-
Updated
Jun 7, 2020 - PHP
Using locking mechanisms requires usage of raw sql queries to bypass Lada Cache.
https://laravel.com/docs/5.6/queries#pessimistic-locking
I'm using lockForUpdate, but it obviously won't work if there is caching in-between, because it is not possible to tell the DB to lock something if we never even reached the DB right?
The solution is simply resort to raw query i.e. using the \D
-
Updated
Jun 2, 2020 - PHP
-
Updated
Dec 3, 2019 - PHP
-
Updated
Sep 20, 2019 - PHP
-
Updated
Oct 21, 2018 - PHP
-
Updated
Mar 23, 2020 - PHP
-
Updated
Nov 25, 2019 - PHP
Improve this page
Add a description, image, and links to the laravel-5-package topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the laravel-5-package topic, visit your repo's landing page and select "manage topics."
Poking around in the code I see references to Constraints. (Silber\Bouncer\Constraints and associated classes)
I have played around with them some and even got them to write out their configuration to the database, but I can't figure out how to actually use them. They appear to be completely undocumented, and I can't quite figure out how they tie into things, although they also appear to be V