0👍
I think this ProjectRequest::where('client_id', $clientId)->value('name');
giving exception.
Either you check your laravel.log inside storage/logs folder or change that method into
// Not working on eloquent model
$valueOject = ProjectRequest::where('client_id',$clientId)->value('name');
// DB facade its working. Change to this method
$valueOject = DB::table('{your_table}')->where('client_id', $clientId)->value('name');
dd($valueOject);
- [Vuejs]-Vuejs Select Dropdown writing an option thats not present makes selected value null
- [Vuejs]-How to loop through entire data beyond the scope of pagination
Source:stackexchange.com