Can you help me away so I can convert from word to html that can image at once?

|
sadeqi125 2020-02-20 09:31:00
i want show my preload first in laravel how can i do this
Z_Yamin 2020-02-20 09:33:48
sadeqi125 2020-02-20 09:31:00
i want show my preload first in laravel how can i do this

what you mean preload?

sadeqi125 2020-02-20 09:35:07
a loader show until completly load website then hide loader and then show website
Z_Yamin 2020-02-20 09:42:56
sadeqi125 2020-02-20 09:35:07
a loader show until completly load website then hide loader and then show website

read this one.
https://laracasts.com/discuss/channels/general-discussion/how-to-show-loader-on-ajax-request-and-hide-on-responce

How to show loader on ajax request and hide on responceLaracasts
My Ajax $.ajax({ url: “{{URL::to(‘/admin/category/check’)}}”, type: “post”, data: {‘valuse’:checkValues, ‘…
MatPk 2020-02-20 10:24:56
what is wrong with my configuration redis?
database.php

‘redis’ => [

‘client’ => env(‘REDIS_CLIENT’, ‘predis’),

‘default’ => [
‘host’ => env(‘REDIS_HOST’, ‘127.0.0.1’),
‘password’ => env(‘REDIS_PASSWORD’, null),
‘port’ => env(‘REDIS_PORT’, 6379),
‘database’ => env(‘REDIS_DB’, 0),
],

‘cache’ => [
‘host’ => env(‘REDIS_HOST’, ‘127.0.0.1’),
‘password’ => env(‘REDIS_PASSWORD’, null),
‘port’ => env(‘REDIS_PORT’, 6379),
‘database’ => env(‘REDIS_CACHE_DB’, 1),
],

],

cache.php

‘redis’ => [
‘driver’ => ‘redis’,
‘connection’ => ‘cache’,
],

and that is how i use it.

$redis = new Client();
$redis->set(‘wd’, ‘wfw’ ,12);
$redis->setex(‘dw’ , ’35’ , 3);

Z_Yamin 2020-02-20 11:37:08
MatPk 2020-02-20 10:24:56
what is wrong with my configuration redis?
database.php

‘redis’ => [

‘client’ => env(‘REDIS_CLIENT’, ‘predis’),

‘default’ => [
‘host’ => env(‘REDIS_HOST’, ‘127.0.0.1’),
‘password’ => env(‘REDIS_PASSWORD’, null),
‘port’ => env(‘REDIS_PORT’, 6379),
‘database’ => env(‘REDIS_DB’, 0),
],

‘cache’ => [
‘host’ => env(‘REDIS_HOST’, ‘127.0.0.1’),
‘password’ => env(‘REDIS_PASSWORD’, null),
‘port’ => env(‘REDIS_PORT’, 6379),
‘database’ => env(‘REDIS_CACHE_DB’, 1),
],

],

cache.php

‘redis’ => [
‘driver’ => ‘redis’,
‘connection’ => ‘cache’,
],

and that is how i use it.

$redis = new Client();
$redis->set(‘wd’, ‘wfw’ ,12);
$redis->setex(‘dw’ , ’35’ , 3);

what is the error?

james000079 2020-02-20 11:51:52
Can you help me away so I can convert from word to html that can image at once?
MatPk 2020-02-20 11:53:59
Z_Yamin 2020-02-20 11:37:08
what is the error?

it does not work. there is no errors.

Yannickshadownet 2020-02-20 13:23:46
Hello everyone. Here I would like to do something but I don’t know how to do it with Ajax. I have three select options and only the first one is loaded. I want that, after its selection, it loads the second depending on the id of the first and after selection of the second it loads me the third according to the id of the second. Thank you for helping me with code or a link that shows how it is done
Roham0010 2020-02-20 13:40:43
Yannickshadownet 2020-02-20 13:23:46
Hello everyone. Here I would like to do something but I don’t know how to do it with Ajax. I have three select options and only the first one is loaded. I want that, after its selection, it loads the second depending on the id of the first and after selection of the second it loads me the third according to the id of the second. Thank you for helping me with code or a link that shows how it is done

There is large amount of tutorials how to do it, explained better than anyone here
Google it:
Fill select options by choosing another select ajax

2020-02-20 13:42:00
Search with Google Callback function in Jquery/JavaScript
dacrixk 2020-02-20 14:03:39
I want to run scheduler to delete post after 24 hour. I create schedule and command in crontab. When I run php artisan schedule:run it showing me “No scheduled command are ready to run”
skys215 2020-02-20 14:06:44
Why you need to delete? Just grab the post which are posted in 24 hours
dacrixk 2020-02-20 14:26:16
skys215 2020-02-20 14:06:44
Why you need to delete? Just grab the post which are posted in 24 hours

Well it as per requirement 😀

dacrixk 2020-02-20 14:26:37
Did you know how to do this ?
dacrixk 2020-02-20 14:26:54
Because I am getting “No scheduled”…
dacrixk 2020-02-20 14:26:58
Error
2020-02-20 14:28:12
i want mycalender only to restrict dates to future dates.Currently is allows past dates but i want it select only future dates swee
Xper1 2020-02-20 14:44:56
https://www.bbc.com/news/world-us-canada-51567695

Larry Tesler: Computer scientist behind cut, copy and paste dies aged 74BBC News
Larry Tesler was responsible for many of the innovations that made personal computing accessible.
skys215 2020-02-20 14:45:43
dacrixk 2020-02-20 14:03:39
I want to run scheduler to delete post after 24 hour. I create schedule and command in crontab. When I run php artisan schedule:run it showing me “No scheduled command are ready to run”

Does it reached the time to run?

Chi_Thian 2020-02-20 15:53:31
Excuse me , how to add html tag after the pointer look like
Chi_Thian 2020-02-20 15:53:39
‘label’ => __(‘payment_method.ask_for_more’)
Prakash D 2020-02-20 16:19:12
laravel_discuss-27137.jpg
I am getting error like this
Prakash D 2020-02-20 16:19:26
I downloaded the resources in GitHub
skys215 2020-02-20 16:19:40
Prakash D 2020-02-20 16:19:12
I am getting error like this

Open network panel, see the response

Prakash D 2020-02-20 16:19:53
So how can I handle the error
Prakash D 2020-02-20 16:20:10
skys215 2020-02-20 16:19:40
Open network panel, see the response

This means

skys215 2020-02-20 16:20:50
Prakash D 2020-02-20 16:20:10
This means

open developer tools of browser

Prakash D 2020-02-20 16:21:16
laravel_discuss-27143.jpg

skys215 2020-02-20 16:24:37
switch to Network panel
Prakash D 2020-02-20 16:29:49
laravel_discuss-27145.jpg

^_* 2020-02-20 16:37:29
laravel_discuss-27146.jpg
whats the issue when install yajra datatabel
skys215 2020-02-20 17:25:07
^_* 2020-02-20 16:37:29
whats the issue when install yajra datatabel

version

skys215 2020-02-20 17:25:33
Prakash D 2020-02-20 16:29:49

and do again what you did to show up the error, see the response of that ajax request

^_* 2020-02-20 17:59:40
skys215 2020-02-20 17:25:07
version

what can i do please ?

skys215 2020-02-20 18:02:03
Find the right version
Ant_Jr 2020-02-20 18:27:52
Please anybody H ave an Idea on how to refer a controller located in a subfolder in the main conrtoller folder?
Ant_Jr 2020-02-20 18:30:59
laravel_discuss-27154.jpg
How to link the LoginController to a route
rrajesh011 2020-02-20 18:39:35
Ant_Jr 2020-02-20 18:30:59
How to link the LoginController to a route

Route::get(‘/login’, ‘AuthLoginController’);

Ant_Jr 2020-02-20 18:40:36
rrajesh011 2020-02-20 18:39:35
Route::get(‘/login’, ‘AuthLoginController’);

Okay thanks bro.

Chi_Thian 2020-02-20 18:44:47
laravel_discuss-27158.jpg

Chi_Thian 2020-02-20 18:44:47
laravel_discuss-27157.jpg

Chi_Thian 2020-02-20 18:45:07
Hello how to fix it
2020-02-20 18:48:48
is bracket issue
2020-02-20 18:48:56
show me code
2020-02-20 18:49:50
may be array not close.
AlkaouDembele 2020-02-20 19:09:20
dafa_ilyasa 2020-02-19 19:44:00
https://stackoverflow.com/questions/57864711/call-to-undefined-function-str-slug-in-laravel-6-0

Install the package Laravel helpers

AlkaouDembele 2020-02-20 19:10:44
Hello everyone, I am using Laravel 6.x. by default when uploading an image with Laravel and DB, Laravel keeps the image in a STORAGE / APP / PUBLIC sub-folder. is there a way to change this system. I want my images to be saved directly to the folder where the CSS and JS folder is located. this way public / image
AlkaouDembele 2020-02-20 19:28:24
Thank you so much
Chi_Thian 2020-02-20 19:43:52
2020-02-20 18:48:56
show me code

laravel_discuss-27173.jpg

|