Skip to content
#

laravel-5-package

Here are 953 public repositories matching this topic...

Hobadee
Hobadee commented Nov 9, 2019

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

telegram-bot-sdk
bugada
bugada commented Mar 14, 2020

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

ekstro
ekstro commented Jan 24, 2019

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
Swanty
Swanty commented Oct 3, 2017

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

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.

Curate this topic

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."

Learn more

You can’t perform that action at this time.