Someone can tell me should I use laravel livewire for frontend or something like reactjs or angular?

|
hddhagai 2021-03-05 07:27:40
2021-03-04 14:00:02

Is the variable $subj being set properly?

hddhagai 2021-03-05 07:29:37
natghi2010 2021-03-04 14:03:11
does this return 404?

Check if you are getting the id correct

huss154 2021-03-05 11:37:10
Someone can tell me should I use laravel livewire for frontend or something like reactjs or angular?
agzpresh 2021-03-05 12:29:57
huss154 2021-03-05 11:37:10
Someone can tell me should I use laravel livewire for frontend or something like reactjs or angular?

It all depends

agzpresh 2021-03-05 12:31:35
If what you want to accomplish is a full-stack application without apis, you can use livewire
agzpresh 2021-03-05 12:32:45
But if you want to create an application that can serve both web and other platforms. It would be easier to use reacts separately and have your backend separately.
Ebenezer Oyenuga 2021-03-05 13:00:47
I just installed Laravel BackPack but my list is empty
Ebenezer Oyenuga 2021-03-05 13:04:42
laravel_discuss-72408.jpg

Moses Ejim 2021-03-05 13:41:25
Please who can help me recommend a very beautiful free admin template
2021-03-05 13:58:29
https://sharebootstrap.com/ruang-bootstrap-admin-dasboard-template/

Ruang – Bootstrap Admin Dashboard templateFree Bootstrap Templates,Themes & Dashboards
Ruang a Free Bootstrap Admin Dashboard template. RuangAdmin is free responsive admin template. Based on Bootstrap 4 Framework. Highly cusmtomizable and easy to use. You can review on RuangAdmin – Demo Contribution Here is how : Fork the repository Clone with git […] <a class=”g1-link g1-link-more” href=”https://sharebootstrap.com/ruang-bootstrap-admin-dasboard-template/”>More</a>
foulla_sam 2021-03-05 14:20:56
2021-03-05 13:58:29
https://sharebootstrap.com/ruang-bootstrap-admin-dasboard-template/

Nice

Moses Ejim 2021-03-05 15:13:34
2021-03-05 13:58:29
https://sharebootstrap.com/ruang-bootstrap-admin-dasboard-template/

Great resource, I really love it

2021-03-05 15:20:50
Moses Ejim 2021-03-05 15:13:34
Great resource, I really love it

Yeah…I did used recently as well on laravelproject… your welcome

Acird Burn 2021-03-05 15:24:21
I a reactjs developer to help build up a custom chart with knowledge of nodejs and sock.io willing to pay for the help if need be
rootkings 2021-03-05 15:47:25
Moses Ejim 2021-03-05 13:41:25
Please who can help me recommend a very beautiful free admin template

Metronic

natghi2010 2021-03-05 16:06:14
Hi, I have a problem.
i wanted to change an attribute on my model.
natghi2010 2021-03-05 16:07:27
I saw this example on the documentation
natghi2010 2021-03-05 16:08:09
laravel_discuss-72422.jpg

2021-03-05 16:08:18
Hello! Everyone I am looking for a freelancing laravel job, if there is any?
natghi2010 2021-03-05 16:08:38
but i cant understand where the function is called
DesolatorMagno 2021-03-05 16:20:43
I don’t get what you don’t understand, the example is clear.
TheFeLuM 2021-03-05 16:22:59
natghi2010 2021-03-05 16:08:38
but i cant understand where the function is called

in your model ! User …

natghi2010 2021-03-05 16:23:17
DesolatorMagno 2021-03-05 16:20:43
I don’t get what you don’t understand, the example is clear.

where does getFirstNameAttribute($value) get called?

TheFeLuM 2021-03-05 16:24:24
$user = User::query()->find(1);
$user->firstname
natghi2010 2021-03-05 16:24:35
okay I see
natghi2010 2021-03-05 16:25:23
I am having a hard time structring my question
natghi2010 2021-03-05 16:25:35
bascially how does laravel new
TheFeLuM 2021-03-05 16:25:37
getFirstNameAttribute
FirstName
natghi2010 2021-03-05 16:26:09
TheFeLuM 2021-03-05 16:25:37
getFirstNameAttribute
FirstName

oh I see

natghi2010 2021-03-05 16:26:57
So it can convert FirstName to first_name?
natghi2010 2021-03-05 16:28:12
I understand
TheFeLuM 2021-03-05 16:28:14
public function getFullNameAttribute()
{
return “{$this->first_name} {$this->last_name}”;
}
TheFeLuM 2021-03-05 16:28:25
$user->fullname
natghi2010 2021-03-05 16:29:04
it has a caml case converter
TheFeLuM 2021-03-05 16:29:38
laravel_discuss-72453.jpg

|