What the Mysql backup binlog service do you use?

|
Z_Yamin 2020-02-22 09:44:25
sadeqi125 2020-02-22 09:44:09
thanks it work correct

welcom bro

sadeqi125 2020-02-22 09:47:48
how to minify laravel js , css and html file
biraldino 2020-02-22 10:00:07
skys215 2020-02-22 08:47:57
try digitalOcean/Vultr/Vpsserver, if you need referral link, dm me

thanks….

biraldino 2020-02-22 10:00:14
Is VPS safe using scaleway.com? Available payment methods only use Credit Cards
Chi_Thian 2020-02-22 11:03:00
Hello Guys, how to use @lang in view
skys215 2020-02-22 11:05:36
Chi_Thian 2020-02-22 11:03:00
Hello Guys, how to use @lang in view

It’s written in doc

Chi_Thian 2020-02-22 11:07:27
yes i know , but when i write
‘label’ => ‘<span class=”text-success”> @lang(‘payment_method.ask_for_more’)</span>’
Chi_Thian 2020-02-22 11:07:36
it show error
skys215 2020-02-22 11:07:48
What error?
Chi_Thian 2020-02-22 11:08:33
skys215 2020-02-22 11:07:48
What error?

syntax error, unexpected ‘payment_method’ (T_STRING), expecting ‘]’ (View:

skys215 2020-02-22 11:08:56
Because you are nesting single quote
parthpabari 2020-02-22 11:09:05
looking for developer ? hire developer with us from $5 per hour. dm for more information
Chi_Thian 2020-02-22 11:10:14
skys215 2020-02-22 11:08:56
Because you are nesting single quote

so what should i do ??

skys215 2020-02-22 11:11:53
‘label’ => ‘<span class=”text-success”> ‘.@lang(‘payment_method.ask_for_more’).</span>’
OR
‘label’ => ‘<span class=”text-success”> @lang(“payment_method.ask_for_more”)</span>’
OR
‘label’ => ‘<span class=”text-success”> @lang(’payment_method.ask_for_more’)</span>’
OR
‘label’ => “<span class=”text-success”> @lang(‘payment_method.ask_for_more’)</span>”
2020-02-22 11:18:55
laravel_discuss-27465.jpg

2020-02-22 11:19:05
Please any one help
2020-02-22 11:19:17
While uploading plesk cpanel
Chi_Thian 2020-02-22 11:19:42
skys215 2020-02-22 11:11:53
‘label’ => ‘<span class=”text-success”> ‘.@lang(‘payment_method.ask_for_more’).</span>’
OR
‘label’ => ‘<span class=”text-success”> @lang(“payment_method.ask_for_more”)</span>’
OR
‘label’ => ‘<span class=”text-success”> @lang(’payment_method.ask_for_more’)</span>’
OR
‘label’ => “<span class=”text-success”> @lang(‘payment_method.ask_for_more’)</span>”

Yes, Thanks let me try.

dimon4ik3001 2020-02-22 13:56:06
hi guys
Your help is very necessary!
in general
PDOException: 🙁 “SQLSTATE [42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes”)
Laravel the latest version.
use Illuminate Support Facades Schema;

public function boot ()
{
Schema :: defaultStringLength (191);
}
such a construction does not work!

Z_Yamin 2020-02-22 14:16:20
hi guys what is the problem whit below code
$employee_id = request(’employee_id’);
$employee = Employee::find($employee_id);
if(!$request->input(‘image’)){
$name = $employee->photo;
}
else {
$name = time().’.’ .explode(‘/’,explode(‘:’, substr($request->input(‘image’), 0 ,
strpos($request->input(‘image’), ‘;’))))[1][1];
Image::make($request->input(‘image’))->resize(0,100)->save(public_path(‘image’),$name);
}

if ( $employee->update([‘photo’=>$name])){
return response()->json([‘update’=>true]);
}

Z_Yamin 2020-02-22 14:16:51
Error:
Quality must range from 0 to 100
Z_Yamin 2020-02-22 14:28:34
any one helpe please
Mahdi_khani 2020-02-22 14:48:15
Hi
How to create real time api with php (not laravel) for application??
Thanks for helping
skys215 2020-02-22 14:52:53
Mahdi_khani 2020-02-22 14:48:15
Hi
How to create real time api with php (not laravel) for application??
Thanks for helping

what do you mean by real time api?

skys215 2020-02-22 14:53:19
Z_Yamin 2020-02-22 14:16:51
Error:
Quality must range from 0 to 100

i guess you need to set quality as well

Z_Yamin 2020-02-22 14:53:49
skys215 2020-02-22 14:53:19
i guess you need to set quality as well

so where? i don’t how

skys215 2020-02-22 14:54:09
dimon4ik3001 2020-02-22 13:56:06
hi guys
Your help is very necessary!
in general
PDOException: 🙁 “SQLSTATE [42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes”)
Laravel the latest version.
use Illuminate Support Facades Schema;

public function boot ()
{
Schema :: defaultStringLength (191);
}
such a construction does not work!

try create a new database with utf8/utf8mb4 collation

skys215 2020-02-22 14:54:32
Z_Yamin 2020-02-22 14:53:49
so where? i don’t how

read the doc of the package you are using

Mahdi_khani 2020-02-22 14:54:42
skys215 2020-02-22 14:52:53
what do you mean by real time api?

I have queue application
That pepol can join to our queue but queue have a limit fir example 20 peapol.
Next one wants to join queue must know how many in the queue
The count of queue must be real time

skys215 2020-02-22 14:55:19
use redis
Mahdi_khani 2020-02-22 14:55:47
Like socket programming?
skys215 2020-02-22 15:04:22
that would be better i think
Mahdi_khani 2020-02-22 15:15:38
skys215 2020-02-22 15:04:22
that would be better i think

Do you have example or tuturail site?

HbJ23 2020-02-22 15:20:16
Fatima 2020-02-18 00:45:19
Please🙏🙏

Error?

skys215 2020-02-22 15:25:34
Mahdi_khani 2020-02-22 15:15:38
Do you have example or tuturail site?

nope

sadeqi125 2020-02-22 15:47:40
how get user category from database and then get permision for every user category with laravel
sadeqi125 2020-02-22 15:47:48
like admin or editor
gsadmin1010 2020-02-22 15:51:57
I have a load balance and when I try to access my application via load balance laravel understands it as an attack and soon I get error 419. how to solve this?
skys215 2020-02-22 16:09:08
gsadmin1010 2020-02-22 15:51:57
I have a load balance and when I try to access my application via load balance laravel understands it as an attack and soon I get error 419. how to solve this?

I think there is an option when you set load balancing . It’s like To use same server for same user

skys215 2020-02-22 16:09:23
sadeqi125 2020-02-22 15:47:40
how get user category from database and then get permision for every user category with laravel

with() or load()

FonteneleBR 2020-02-22 18:28:16
What the Mysql backup binlog service do you use? The ottomatik have so much problems
AlkaouDembele 2020-02-22 19:37:39
Hello, how upload a file with file original name in AWS s3
skys215 2020-02-22 20:01:09
AlkaouDembele 2020-02-22 19:37:39
Hello, how upload a file with file original name in AWS s3

read document, filesystem

AlkaouDembele 2020-02-22 20:02:00
skys215 2020-02-22 20:01:09
read document, filesystem

Send me url please

skys215 2020-02-22 20:05:15
AlkaouDembele 2020-02-22 20:02:00
Send me url please

https://laravel.com/docs/6.x/filesystem#file-uploads

Relaxed Guy 2020-02-22 22:15:22
Guys how do u handle errorException. Count() parameter must be an array or an object that implements countable
Relaxed Guy 2020-02-22 22:15:30
Php 7.2
LiceaPacheco 2020-02-22 22:17:35
Relaxed Guy 2020-02-22 22:15:22
Guys how do u handle errorException. Count() parameter must be an array or an object that implements countable

that error is launched when you try to invoke the function tell about something that is not an array

Relaxed Guy 2020-02-22 22:17:37
laravel_discuss-27521.jpg

LiceaPacheco 2020-02-22 22:18:07
Relaxed Guy 2020-02-22 22:17:37

Let me ser your code

|