Contents:
Did you not say it is working?
Which editor is that?
What about this?
Are you using xampp?
Do you use WordPress?
Did you not say it is working?
Which editor is that?
What about this?
Are you using xampp?
Do you use WordPress?
simon_an 2021-05-18 21:42:22
Alright
flyingdragons 2021-05-18 21:42:26
Why because if I type some thing and go back to edit the first word then it wont show
simon_an 2021-05-18 21:43:11
flyingdragons 2021-05-18 21:42:26
Why because if I type some thing and go back to edit the first word then it wont show
Did you not say it is working?
flyingdragons 2021-05-18 21:43:38
simon_an 2021-05-18 21:43:11
Did you not say it is working?
Sorry to say, no its not.
simon_an 2021-05-18 21:44:37
If it is not, look at how I implemented it there then implement on your application
simon_an 2021-05-18 21:46:36
The thing is to listen to on key up event then find out if the key hit is spacebar(keyCode 32) then the word that the person typed is the second-last word. Get it and validate if you want
simon_an 2021-05-18 21:46:51
That is if I understood your question
Rashid 2021-05-18 21:50:22

how to made this type of file upload option
Rashid 2021-05-18 21:50:33
is there any plugin
simon_an 2021-05-18 21:54:08
Which editor is that?
smartnathan2020 2021-05-18 21:54:59
Rashid 2021-05-18 21:50:22
how to made this type of file upload option
Dropzone.js should give you something similar most likely.
Rashid 2021-05-18 22:15:09
smartnathan2020 2021-05-18 21:54:59
Dropzone.js should give you something similar most likely.
there is only drag&drop
Rashid 2021-05-18 22:15:22
no option to select image
DesolatorMagno 2021-05-18 22:42:01
It should have the option, check the doc for extra options.
Tanish Singh 2021-05-18 23:14:33

simon_an 2021-05-18 23:15:56
Tanish Singh 2021-05-18 23:14:33
What about this?
simon_an 2021-05-18 23:16:50
Which version of Laravel are you using
Tanish Singh 2021-05-18 23:16:55
Errors in composer update
simon_an 2021-05-18 23:17:53
Are you using xampp?
SureshLaraDev 2021-05-18 23:18:16
Looks like he didn’t start mysql
simon_an 2021-05-18 23:18:36
Turn on your database
simon_an 2021-05-18 23:18:50
SureshLaraDev 2021-05-18 23:18:16
Looks like he didn’t start mysql
Yeah
Tanish Singh 2021-05-18 23:19:26
simon_an 2021-05-18 23:17:53
Are you using xampp?
Yes
simon_an 2021-05-18 23:19:31
Application is trying to connect to the database but it can’t
Tanish Singh 2021-05-18 23:19:37
SureshLaraDev 2021-05-18 23:18:16
Looks like he didn’t start mysql
It’s on
SureshLaraDev 2021-05-18 23:20:00
Tanish Singh 2021-05-18 23:19:37
It’s on
Restart xampp
Tanish Singh 2021-05-18 23:20:14
Ok
2021-05-18 23:53:14

2021-05-18 23:53:46
2021-05-18 23:53:14
I want it to be full width
2021-05-18 23:53:57
Help me pm
Lacho06Dev 2021-05-18 23:54:32
2021-05-18 23:53:57
Help me pm
Do you use WordPress?
Lacho06Dev 2021-05-18 23:54:42
Or bootstrap??
2021-05-19 00:02:07
Bootstap
Mohammad Nasser 2021-05-19 01:05:22
Try to use class “container-fluid” instead of “container”
TheTumaMan 2021-05-19 01:12:09
I can’t believe it, the problem was the <td> tag.. my god.
Now the code is:
“<td><a href=”{{ route(‘customers.edit’, $customer) }}”>[Edit]</a></td>
<td><a href=”#” onclick=”event.preventDefault(); document.getElementById(‘delete-customer-{{ $customer->id }}-form’).submit();”>[Delete]</a></td>
<td>
<form id=”delete-customer-{{ $customer->id }}-form” action=”{{ route(‘customers.destroy’, $customer) }}” method=”POST” style=”display: none;”>
method(‘DELETE’)
csrf
</form>
</td>”
Now the code is:
“<td><a href=”{{ route(‘customers.edit’, $customer) }}”>[Edit]</a></td>
<td><a href=”#” onclick=”event.preventDefault(); document.getElementById(‘delete-customer-{{ $customer->id }}-form’).submit();”>[Delete]</a></td>
<td>
<form id=”delete-customer-{{ $customer->id }}-form” action=”{{ route(‘customers.destroy’, $customer) }}” method=”POST” style=”display: none;”>
method(‘DELETE’)
csrf
</form>
</td>”
Thanks to all guys 🙂