Which is better to use the administrative panel?

|
skys215 2019-07-15 14:25:06
Unless, what does “can only install one of laravel framework 5.7 5.8” means?
espari 2019-07-15 14:29:11
daemon_coder 2019-07-15 14:23:26
two laravel? on my server?

i think install two version php your server

daemon_coder 2019-07-15 14:29:53
lemmie share a copy of my composer.json file?
daemon_coder 2019-07-15 14:33:15
laravel_discuss-9422.jpg

daemon_coder 2019-07-15 14:46:09
espari 2019-07-15 14:29:11
i think install two version php your server

how to handle this?

espari 2019-07-15 14:49:45
daemon_coder 2019-07-15 14:46:09
how to handle this?

delete composer.lock and delete vendor folder

enter composer update in terminal

daemon_coder 2019-07-15 14:51:21
espari 2019-07-15 14:49:45
delete composer.lock and delete vendor folder

enter composer update in terminal

i changed laravel/framework to 5.8.* and ran composer update. its updating now. let me c it it will solve the issue

daemon_coder 2019-07-15 15:05:17
okay guys. updating to 5.8 solved the issue.
daemon_coder 2019-07-15 15:05:58
espari 2019-07-15 14:49:45
delete composer.lock and delete vendor folder

enter composer update in terminal

this is the best way to actually solve this and still maintain 5.7

skys215 2019-07-15 15:08:06
Have a look at laravel 5.8 update guide
espari 2019-07-15 15:08:43
daemon_coder 2019-07-15 15:05:58
this is the best way to actually solve this and still maintain 5.7

sometimes packets are involved ๐Ÿ˜„

daemon_coder 2019-07-15 15:09:44
skys215 2019-07-15 15:08:06
Have a look at laravel 5.8 update guide

yes. am already doing that

MatPk 2019-07-15 15:55:44
why i cant use @yield in my view? all things work but @yield cant show anything. all names are right
skys215 2019-07-15 16:16:42
What do you mean by can’t use?
savchuk_ivan 2019-07-15 16:21:19
Hellow
savchuk_ivan 2019-07-15 16:22:26
I want creat admin panel
savchuk_ivan 2019-07-15 16:22:36
What is better to choose adminpanel?
savchuk_ivan 2019-07-15 16:22:53
For example, Voyager
savchuk_ivan 2019-07-15 16:23:32
But ะœoyager has no filters.
savchuk_ivan 2019-07-15 16:24:12
Can you give me some advice?
Which is better to use the system?
savchuk_ivan 2019-07-15 16:24:26
Thanks!
yoofi_graham 2019-07-15 20:06:24
Hello any resource to help create custom artisan commands
pushpak1300 2019-07-15 22:19:28
yoofi_graham 2019-07-15 20:06:24
Hello any resource to help create custom artisan commands

Read documentation.

yoofi_graham 2019-07-15 22:26:00
pushpak1300 2019-07-15 22:19:28
Read documentation.

I have it doesn’t seem to have much on using the commands to create new files / directories. Stubs

pushpak1300 2019-07-15 22:27:03
Yeah but it will give overview how to create custom comands.
yoofi_graham 2019-07-15 22:43:08
pushpak1300 2019-07-15 22:27:03
Yeah but it will give overview how to create custom comands.

Yeah. Which I’m fine with.

yoofi_graham 2019-07-15 22:44:04
I want a resource that makes use of stubs with custom commands
DesolatorMagno 2019-07-15 22:47:32
In the documentation there is how to make custom command, PHP artisan don’t make everything, for example for traits I make it at hand, but it give the knowledge of how to build it.
binumathew 2019-07-16 08:08:08
Anyone created a Detailed design document (DDD) for their client? One of my client ask for it ! I dont have any idea what is it. Any idea?
skys215 2019-07-16 08:09:55
have you googled it?
binumathew 2019-07-16 08:11:46
Yes, didnt got a clear picture !! Now got one from group, explained it to me
binumathew 2019-07-16 08:11:47
Thks
binumathew 2019-07-16 11:00:07
Makerlog, became a member they will invite you to telegram
savchuk_ivan 2019-07-16 11:02:31
Hello
Tell me please
Which is better to use the administrative panel?
Thank
savchuk_ivan 2019-07-16 11:05:35
I’m using Voyager, but the Voyager hasn’t filtering of list records
savchuk_ivan 2019-07-16 11:07:23
Can someone help me?
savchuk_ivan 2019-07-16 11:09:23
laravel_discuss-9462.jpg

MatPk 2019-07-16 11:30:32
hi
im using invention image laravel package.
im trying to resize the image with keep aspect ratio but i have error
this is code
protected function uploadImage($file)
{
$year = Carbon::now()->year;
$fileName = rand(10,100).$file->getClientOriginalName();
$filePath = “uploaded/images/{$year}/”;
$file->move($filePath,$fileName);

$sizes = [“300″,”600″,”900”];
Image::make($file->getRealPath())->resize(300,null,function ($constraint){
$constraint->aspectRatio();
})->save(public_path($filePath.’300_’.$fileName));
}
and this is error
#Image_source_not_readable

2019-07-16 13:04:31
Give the read permissions.
EdcbaoO 2019-07-16 13:49:29
Guys.. Who wants to practice this course with me… I need to be in a team so I can be always motivated to finish it and help each other too

Blog with Admin Panel – YouTubeYouTube
alexanderdavii 2019-07-16 14:13:53
hi , i have a website and his database local , inside wamp serve , but the website work as well while the connetion with internet is ok , but when i cut the connetion , its not work (E : cant connect with mysql serve) , how can i connent with local database ? not the online one ?
Cybervant 2019-07-16 14:24:20
I want to sum subarray values and group by a subarray value but I am getting error: ‘Undefined index: EEReg’.

The array is as follows.

$balances = [
6 => [
“MemberNumber” => “100000”
“Portfolio” => “Aggressive”
“EEReg” => “527675”
“ERReg” => “4772955”
]
7 => [
“MemberNumber” => “100001”
“Portfolio” => “Moderate”
“EEReg” => “6745410”
“ERReg” => “2266549”
]
8 => [
“MemberNumber” => “100002”
“Portfolio” => “Aggressive”
“EEReg” => “1121845”
“ERReg” => “6158774”
]
9 => [
“MemberNumber” => “100003”
“Portfolio” => “Moderate”
“EEReg” => “433784”
“ERReg” => “8123355”
]
]
and the current code is;

$total_balances = array();
foreach ($balances as $balance) {
foreach ($balance as $key => $value) {
if ($key == ‘MemberNumber’ || $key == ‘Portfolio’) {
continue;
} else {
$total_balances[$balance[‘Portfolio’]][$key] += $value;
}
}
}
I expect the result to be;

$total_balances = [
“Aggressive” => [
“EEReg” => “Sum of EEReg where Portfolio is Aggressive”,
“ERReg” => “Sum of ERReg where Portfolio is Aggressive”,
],
“Moderate” => [
“EEReg” => “Sum of EEReg where Portfolio is Moderate”,
“ERReg” => “Sum of ERReg where Portfolio is Moderate”,
]
]

EdcbaoO 2019-07-16 15:33:59
EdcbaoO 2019-07-16 13:49:29
Guys.. Who wants to practice this course with me… I need to be in a team so I can be always motivated to finish it and help each other too
https://www.youtube.com/playlist?list=PLe30vg_FG4OTELVqQgHaMaq2oELjpSWy_

Anyone?
We can apply any other project

MatPk 2019-07-16 19:24:58
who worked with intervention image in laravel? i have an error
daemon_coder 2019-07-16 19:40:51
Ask ur question
MatPk 2019-07-16 19:48:30
i get this error

Image source not readable

MatPk 2019-07-16 19:49:08
this is code

protected function uploadImage($file)
{
$year = Carbon::now()->year;
$fileName = rand(10,100).$file->getClientOriginalName();
$filePath = “uploaded/images/{$year}/”;
$file->move($filePath,$fileName);

$sizes = [“300″,”600″,”900”];
Image::make($file->getRealPath())->resize(300,null,function ($constraint){
$constraint->aspectRatio();
})->save(public_path($filePath.’300_’.$fileName));
}
and this is error
#Image_source_not_readable

MatPk 2019-07-16 20:00:28
daemon_coder 2019-07-16 19:40:51
Ask ur question

are you still here?

daemon_coder 2019-07-16 20:03:28
MatPk 2019-07-16 19:49:08
this is code

protected function uploadImage($file)
{
$year = Carbon::now()->year;
$fileName = rand(10,100).$file->getClientOriginalName();
$filePath = “uploaded/images/{$year}/”;
$file->move($filePath,$fileName);

$sizes = [“300″,”600″,”900”];
Image::make($file->getRealPath())->resize(300,null,function ($constraint){
$constraint->aspectRatio();
})->save(public_path($filePath.’300_’.$fileName));
}
and this is error
#Image_source_not_readable

U ain’t sending d image as base64?

MatPk 2019-07-16 20:04:25
daemon_coder 2019-07-16 20:03:28
U ain’t sending d image as base64?

no
i can upload it with move() normally
i have problems with intervention image

|