Is there any problem when I directly put the files to the server?

|
natghi2010 2021-02-18 23:27:12
foulla_sam 2021-02-18 23:26:24
What I did:
– composer require laravel/ui
– php artisan ui vue
– npm install
– npm run dev

you need to do npm install boostrap with
npm install vue bootstrap bootstrap-vue

natghi2010 2021-02-18 23:27:30
this is the reason i hate vue
Techzsmart 2021-02-18 23:40:44
laravel_discuss-70789.jpg

Techzsmart 2021-02-18 23:41:14
Techzsmart 2021-02-18 23:40:44

Can Anyone help me how to solve this problem

emma_kodes 2021-02-18 23:46:16
Techzsmart 2021-02-18 23:40:44

Add php to path

Techzsmart 2021-02-18 23:46:34
emma_kodes 2021-02-18 23:46:16
Add php to path

How to do that?

emma_kodes 2021-02-18 23:47:11
Google how how to add environment variable on windows
Techzsmart 2021-02-18 23:47:48
I have to add system variable
Techzsmart 2021-02-18 23:48:00
Or other?
Ayatolee 2021-02-18 23:49:05
Yh
Ayatolee 2021-02-18 23:51:07
You’ll need to add the bin path for xmapp to your path in environmental variables
Techzsmart 2021-02-18 23:51:35
Ayatolee 2021-02-18 23:51:07
You’ll need to add the bin path for xmapp to your path in environmental variables

Ok

2021-02-19 00:32:28
Im new here
2021-02-19 00:32:39
I’ve a question
2021-02-19 00:33:24
Seriousely how much time do we need practicaly to understand deeply C++ language
Und3rscore 2021-02-19 00:33:42
Hi Guys, I need help, it’s easy question.. can anyone write me in pvt? Please.. thank u all
2021-02-19 00:33:46
Because some says u need 10years of practices
DesolatorMagno 2021-02-19 00:34:31
If a time machine is invented in the next 10-15 years, and you have no problem killing yourself, it can take a couple of days.
DesolatorMagno 2021-02-19 00:37:07
You could also go with the theory of the 10.000 hours to master a skill.
stealthSnake 2021-02-19 02:53:22
foulla_sam 2021-02-18 22:47:56
This is my app.css file in public folder

Try to call it by {{ asset(‘css/app.css’) }} in ur blade file instead.
Make sure you run npm run dev first to complie it

foulla_sam 2021-02-19 03:37:10
stealthSnake 2021-02-19 02:53:22
Try to call it by {{ asset(‘css/app.css’) }} in ur blade file instead.
Make sure you run npm run dev first to complie it

Thanks it works

2021-02-19 06:51:36
2021-02-19 00:33:24
Seriousely how much time do we need practicaly to understand deeply C++ language

You need to find, how big is the apple, then you can start eating and then you’ll know when it’ll be completely eaten.

Since, you’re eating, no one else can tell you about time.

2021-02-19 06:53:43
emma_kodes 2021-02-18 23:47:11
Google how how to add environment variable on windows

My computer > properties > system variable > add path here… I guess.

stealthSnake 2021-02-19 08:14:58
Techzsmart 2021-02-18 23:41:14
Can Anyone help me how to solve this problem

How did you install your laravel project?
Have run composer install?

PeterMukk 2021-02-19 08:26:42
Make some money
This one is real not fake
Try and you will learn thank me later

https://ukmoney.xyz/643764609471320/

PeterMukk 2021-02-19 08:26:57
Make some money
This one is real not fake
Try and you will learn thank me later

https://ukmoney.xyz/643764609471320/

Jomitz 2021-02-19 10:10:10
put this in your php.ini file which will be in the php folder “extension=fileinfo.so” without the quotes
Jomitz 2021-02-19 10:10:21
restart your server
Rashid 2021-02-19 10:56:09
laravel_discuss-70830.jpg

Rashid 2021-02-19 10:56:24
these relation is not working
segungreat 2021-02-19 11:25:09
Rashid 2021-02-19 10:56:09

Is product_categories the name of the model class?

Harikrishnan5494 2021-02-19 11:38:51
Hi all…when I was uploaded model fiiles into laravel live server it’s showing app/model/modelname not found error..is there any problem when I directly put the files to the server?
saboorhamedi 2021-02-19 11:47:30
Hello guys, I’m trying to show my data through the id but I get 404|
NOT FOUND error
saboorhamedi 2021-02-19 11:47:43
public function show($id)
{
$post = Post::find($id);
return view(‘show.show’)->with(‘post’, $post);
}
saboorhamedi 2021-02-19 11:47:55
<a href=”/show/{{ $item->id }}” class=”btn btn-primary links”>Read</a>
|