Which library is used to firebase database integration with laravel 6?
does any know how to solve this kind of problem ?
any buddy tell me why i got exception here?
what kind of exception ?
I have creatd two database one is designation othere is employee i have put 3 designationname name id in designation table now i am taking two input name and designtionname i have to strore designtionid related to name how can i do this?
Are sure you need the file which filename starts with dot?
Can anybody help me to find the top advanced course for deep learning of the Laravel?
Why does the dot show as soon as i put it in the htdoc file ?
the file name starts with . so it’s a hidden file, you have opened a wrong file
what is the problem?
Access to XMLHttpRequest at ‘javascript:ajaxLoad(‘http://localhost/account/public/system/update/2′)’ from origin ‘http://localhost’ has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
what is the problem?
Access to XMLHttpRequest at ‘javascript:ajaxLoad(‘http://localhost/account/public/system/update/2′)’ from origin ‘http://localhost’ has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
check csrf
what is the problem?
Access to XMLHttpRequest at ‘javascript:ajaxLoad(‘http://localhost/account/public/system/update/2′)’ from origin ‘http://localhost’ has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https.
use cors package
Have any project and issue please ping me. @manojgohel

any buddy tell me why i got exception here?
what kind of exception ?
it seems ok
no
I have creatd two database one is designation othere is employee i have put 3 designationname name id in designation table now i am taking two input name and designtionname i have to strore designtionid related to name how can i do this?
I have creatd two database one is designation othere is employee i have put 3 designationname name id in designation table now i am taking two input name and designtionname i have to strore designtionid related to name how can i do this?
you should pass desgintionid from the form, not the name
No i need this file
It opens normaly when the project is on desktop
But as soon as i put the project inside the htdoc file it becomes like that
I cant use join or something so there i can fetch the related colume data something like this
yes, go to documentation, eloquent, relationships
Can anybody help me to find the top advanced course for deep learning of the Laravel?
The files doenst have a dot when its on the desktop
Can anybody help me to find the top advanced course for deep learning of the Laravel?
Git.ir
in English please, if it possible
The Best source is laracast
http://laracast.com/
I think you have copy the wrong file
Can anybody help me to find the top advanced course for deep learning of the Laravel?
laravel.com
http://laracast.com/
Thanks!
All tutorials are free
It is in English
Thanks!
join them
class Account extends Model
{
public function user()
{
return $this->belongsTo(‘AppUser’);
}
}
class Department extends Model
{
public function user()
{
return $this->belongsTo(‘AppUser’);
}
public function deignation()
{
return $this->hasMany(‘AppDesignation’);
}
}
class Designation extends Model
{
public function user()
{
return $this->belongsTo(‘AppUser’);
}
public function department()
{
return $this->belongsTo(‘AppDepartment’);
}
}
{
public function account()
{
return $this->hasOne(‘AppAccount’);
}
public function department()
{
return $this->hasOne(‘AppDepartment’);
}
public function designation()
{
return $this->hasOne(‘AppDesignation’);
}
}

I want to diplay each users department and designation in that table
I dont get please
use with() function
$user = User::with([‘designation’,’department])->get()
