Is this the only option ?
Anyone knows how to fix this?
Any idea why Axios why not catch errors 422 or 5xx?
php file when deploy website?
How can i fix it?
Can anyone help me for fcm push notification?
How can i setup in my project ?
Just redirect use to the other site or implement api on the other site and use it in first site or use iframe to show the other site in your site
or use iframe to show your new website in your current website
Why dont you use subdomain and redirect the user there
Make alias xyz points to the second laravel public folder
Eloquent ORM seems like a simple mechanism, but under the hood, there’s a lot of semi-hidden functions and less-known ways to achieve more with it. In this article, I will show you a few tricks.
Thanks
Thanks
Anyone knows how to fix this?
Thanks
You have to share some code so may somone helps..
Thanks
show your code how you use it and in where

which index.php … what do you want to do?
Upload File From Frontend Server {GuzzleHttp} To REST API Server In PHP {Laravel}
You will learn to setup Laravel Frontend (Customer Facing), Backend (REST API), file upload from frontend to backend API with PHP GuzzleHttp.
“””
Expected response code 354 but got code “503”, with message “503-All RCPT commands were rejected with this error:
503-“Your IP: 80.248.75.48 : Your domain gmail.com is not allowed in header
503-From”
503 Valid RCPT command must precede DATA
”
“””
<?php
namespace AppMail;
use IlluminateBusQueueable;
use IlluminateHttpRequest;
use IlluminateContractsQueueShouldQueue;
use IlluminateMailMailable;
use IlluminateQueueSerializesModels;
class ContactMail extends Mailable
{
use Queueable, SerializesModels;
public $data;
/
* Create a new message instance.
*
* @return void
*/
public function __construct(Request $request)
{
$this->data = $request;
}
/
* Build the message.
*
* @return $this
*/
public function build()
{
return $this->subject($this->data->subject)
->from($this->data->email,$this->data->name)
->to(‘info@mydomaine.com’,’SA’)
->view(‘SendEmail.envoyerEmail’);
}
}
<?php
namespace AppHttpControllers;
use IlluminateHttpRequest;
use AppMailContactMail;
use IlluminateSupportFacadesValidator;
use Mail;
use IlluminateSupportArr;
class ContactmailController extends Controller
{
public function WriteUs(Request $request)
{
$validator = Validator::make($request->all(), [
‘subject’ => ‘bail|required|min:4′,
’email’ => ‘bail|required|email’,
‘message’ => ‘bail|required|min:2’,
‘name’ => ‘bail|required’,
]);
if ($validator->fails()) {
return redirect(‘/Contacts’)
->withErrors($validator)
->withInput();
}
try {
Mail::send(new ContactMail($request));
return redirect()->back()->with(‘message’,’Your message has been sent. Thank you!’);
} catch(Swift_TransportException $e){
if($e->getMessage()) {
dd($e->getMessage());
}
}
}
}
MAIL_DRIVER=smtp
MAIL_HOST=mail.mydomaine.com
MAIL_PORT=465
MAIL_USERNAME=contact@mydomaine.com
MAIL_PASSWORD=**********
MAIL_ENCRYPTION=SSL
MAIL_FROM_ADDRESS=contact@mydomaine.com
MAIL_FROM_NAME=SA
MAIL_DRIVER=smtp
MAIL_HOST=mail.mydomaine.com
MAIL_PORT=465
MAIL_USERNAME=contact@mydomaine.com
MAIL_PASSWORD=**********
MAIL_ENCRYPTION=SSL
MAIL_FROM_ADDRESS=contact@mydomaine.com
MAIL_FROM_NAME=SA
this is too long to post it here, can you use https://pastebin.com/
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Try using mailtrap first
It could be that your IP is banned, that you have not configure well the data, that you didn’t disabled second factor, etc.
Please am new to laravel
Ask your question there are always someone to help..
Okay
Thank you 🙏
Change ur security of gmail to allow less secured apps
Instant and fastest withdrawal 💯
Its been rated one of the best investment platform so far, you also get bonus on referrals… I you can contact her.. 👇👇
@Julianne_fx
@Julianne_fx
Why this not working
It’s should send notifications for all devices
$user =AppUser::all(‘token’);
$post=Article::where(‘id’,$id)->first(‘title’);
$data = [
“to” => array($user),
“notification” =>
[
“title” => ‘تم اضافة مدونة’,
“body” =>$post->title,
],
“data”=>[
“id”=>$id,
]
array($user)
$user
[$user]