Search
 
SCRIPT & CODE EXAMPLE
 

PHP

BelongsToMany relations pivot fields are null in Livewire refresh

# BelongsToMany relations pivot fields are null in Livewire refresh
# just re-hydrate it, example:

// in Model
public function role(){
	return $this->belongsToMany(Role::class, "tbl_user_has_roles", "user_id", "role_id")->withPivot("some_column");
}

// in livewire component
public function hydrate(){
	$this->userRole = User::with(["role"])->where('id', $this->id)->first()->role;
}
Comment

PREVIOUS NEXT
Code Example
Php :: Laravel: validate an integer field that needs to be greater than another 
Php :: prestashop show all products in category 
Php :: rollback a specific migration laravel 
Php :: code snippet for header footer in wordpress 
Php :: how to make login and logout to blog with php without database or MySQL 
Php :: ubuntu where are laravel logs stored 
Php :: generate press viewport 
Php :: I wanna add new tab clientarea in whmcs 
Php :: laravel pagination prevent duplicate rows 
Php :: php print array key and value 
Php :: simple_html_dom stream does not support seeking 
Php :: laravel 8 ui auth 
Php :: bsljeet 
Php :: laravel view-model 
Php :: dd function not laravel 
Php :: hook de pré-commit se déclenche 
Php :: he PHP exec() function must be enabled. 
Php :: List all controllers in codeigniter HMVC structure 
Php :: Ciclo for PHP ejemplos 
Php :: Extract all audio tracks / streams 
Php :: Target class [LoginController] does not exist. 
Php :: laravel route name with parameters 
Php :: php string filter email 
Php :: read file and convert each line in array php 
Php :: Laravael Blog Project 
Php :: calculate 1 day interest 
Php :: php forech pdo 
Java :: android.support.design.widget.coordinatorlayout androidx 
Java :: marker annotations in java 
Java :: junit 5 dependency maven 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =