How can i provide machine learning in laravel project?

|
2019-09-20 20:52:36
If you know the php very well, you can study any the framework…
2019-09-20 20:52:57
Why do you quesion about C and so on?
Inwizard1 2019-09-20 20:52:59
2019-09-20 20:52:36
If you know the php very well, you can study any the framework…

I try to study laravel

2019-09-20 20:53:31
As you konw, you can build the web site using it
2019-09-20 20:53:33
Right
2019-09-20 20:53:49
But why do you ask about this?
2019-09-20 20:54:18
Inwizard1 2019-09-20 20:52:59
I try to study laravel

I think that you have to study the php first.

2019-09-20 20:54:28
Of course, it is my mind
2019-09-20 20:54:44
So, you can choose as you want
2019-09-20 20:55:48
If you want, I can support to you study laravel and php
Inwizard1 2019-09-20 20:56:30
Just php enough for me. But i make simple sites on wp and drupal. I want to up more
2019-09-20 20:57:06
oh.. greate
2019-09-21 08:28:08
laravel_discuss-13870.jpg
Array to string conversation error….plz help
2019-09-21 08:29:47
laravel_discuss-13871.jpg

peanutbutter03 2019-09-21 08:57:17
You can use the serialize() PHP function to convert arrays into strings
peanutbutter03 2019-09-21 08:57:59
https://www.php.net/manual/en/function.serialize.php
Saeed_RB92 2019-09-21 10:19:54
Inwizard1 2019-09-20 20:56:30
Just php enough for me. But i make simple sites on wp and drupal. I want to up more

just do evrything you want . create and learn and do this for ever 🙂

oxbir 2019-09-21 11:03:32
Method IlluminateHttpUploadedFile::save does not exist.
oxbir 2019-09-21 11:03:33
public function store(VideoRequest $request)
{
$video = new Video;
$video->user_id = auth()->user()->id;
$video->title = $request->title;
$video->lang = $request->lang;
$video->body = $request->body;
if($request->has(‘image’)) {
$image = $request->file(‘image’);
$filename = $image->getClientOriginalName();
$image->move(public_path(‘images/agencies’), $filename);
$video->image = $request->file(‘image’)->getClientOriginalName();
}
if($request->has(‘video’)) {
$video = $request->file(‘video’);
$filename = $video->getClientOriginalName();
$video->move(public_path(‘videos’), $filename);
$video->video = $request->file(‘video’)->getClientOriginalName();
}
$video->save();
return redirect()->route(‘videos.index’);
}
oxbir 2019-09-21 11:04:28
What is this error
hatefsh 2019-09-21 11:49:52
oxbir 2019-09-21 11:04:28
What is this error

The method does not exist in that class, perhaps you imported the wrong namespace or simply you are looking at a nonexistent method

hatefsh 2019-09-21 11:50:47
Or maybe initiated the object incorrectly or accessing the method incorrectly
hatefsh 2019-09-21 11:52:22
https://laravel.com/docs/5.8/filesystem#file-uploads
hatefsh 2019-09-21 11:52:32
Check this one out
vahid_izadyar 2019-09-21 13:13:21
hey guys how can i provide machine learning in laravel project?
kitkover 2019-09-21 13:29:56
vahid_izadyar 2019-09-21 13:13:21
hey guys how can i provide machine learning in laravel project?

Php-ml?

vahid_izadyar 2019-09-21 13:45:10
kitkover 2019-09-21 13:29:56
Php-ml?

yes i want that with laravel

kitkover 2019-09-21 13:50:31
vahid_izadyar 2019-09-21 13:45:10
yes i want that with laravel

Import library and work) create own provider and use or just use without ioc

2019-09-21 14:30:20
laravel_discuss-13890.jpg

2019-09-21 14:30:34
laravel_discuss-13891.jpg

2019-09-21 14:30:53
2019-09-21 14:30:34

what this error

2019-09-21 14:31:30
laravel_discuss-13893.jpg

kitkover 2019-09-21 14:53:23
2019-09-21 14:30:53
what this error

should be Route::post() in route.php for this route path

2019-09-21 15:07:02
ok
ErgashevXurshid 2019-09-21 15:34:33
Hello world 🙂
ErgashevXurshid 2019-09-21 15:34:49
I have any problems in the redis
ErgashevXurshid 2019-09-21 15:35:04
Please remove or rename the Redis facade alias in your “app” configuration file in order to avoid collision with the PHP Redis extension. in file /var/www/html/VUE/realtime-vue-google/vendor/laravel/framework/src/Illuminate/Redis/Connectors/PhpRedisConnector.php on line 72
ErgashevXurshid 2019-09-21 15:35:14
What is it? 🥺
ErgashevXurshid 2019-09-21 15:35:25
pls help mee
ErgashevXurshid 2019-09-21 15:38:47
Problem [‘SOLVED’] 😎
ErgashevXurshid 2019-09-21 15:40:14
I’m using predis/predis so I changed REDIS_CLENT value to the ‘predis’
kitkover 2019-09-21 16:09:12
ErgashevXurshid 2019-09-21 15:40:14
I’m using predis/predis so I changed REDIS_CLENT value to the ‘predis’

https://laravel.com/docs/master/redis#phpredis

ErgashevXurshid 2019-09-21 16:09:42
kitkover 2019-09-21 16:09:12
https://laravel.com/docs/master/redis#phpredis

Haa rahmat shuni ko’rib qoldim o’ziyam

kitkover 2019-09-21 16:11:43
ErgashevXurshid 2019-09-21 16:09:42
Haa rahmat shuni ko’rib qoldim o’ziyam

I don’t understand

ErgashevXurshid 2019-09-21 16:13:04
kitkover 2019-09-21 16:11:43
I don’t understand

Oh, sorry, Mr. Bezuglov. Thank you bro I solved 😊

لشگر ورماخت 2019-09-21 21:22:03
Routes:

Route::group([‘middleware’ => [‘auth’, ‘admin’]], function () {
Route::get(‘admin’, ‘AdminController@index’);
});
Kernel laravel:

protected $routeMiddleware = [
‘admin’ => AppHttpMiddlewareAdmin::class,
];
Error:

IlluminateContractsContainerBindingResolutionException
Target class [admin] does not exist.
http://127.0.0.1:8000/admin

kitkover 2019-09-21 22:33:44
لشگر ورماخت 2019-09-21 21:22:03
Routes:

Route::group([‘middleware’ => [‘auth’, ‘admin’]], function () {
Route::get(‘admin’, ‘AdminController@index’);
});
Kernel laravel:

protected $routeMiddleware = [
‘admin’ => AppHttpMiddlewareAdmin::class,
];
Error:

IlluminateContractsContainerBindingResolutionException
Target class [admin] does not exist.
http://127.0.0.1:8000/admin

In Middleware folder Admin.php exist?

T_r_a_p_s_o_u_l 2019-09-21 22:56:49
laravel_discuss-13917.jpg
This is actually a form inside a modal and am trying to get the value of the textarea area using JQUERY but it’s not working..can someone please help me
T_r_a_p_s_o_u_l 2019-09-21 22:56:51
laravel_discuss-13918.jpg

T_r_a_p_s_o_u_l 2019-09-21 22:57:08
T_r_a_p_s_o_u_l 2019-09-21 22:56:51

this is the JQUERY

|