繁体   English   中英

DOMPDF-Laravel-带有附件的电子邮件PDF

[英]DOMPDF - Laravel - Email PDF with Attachment

我收到此错误,这是什么原因

“未定义的变量:引号”

QuotationController.php

public function update(Request $request, Quotation $quotation)
    {
      {


          $quotation->description= $request['description'];
          $quotation->qty= $request['qty'];
          $quotation->each_price= $request['each_price'];
          $quotation->save();

         $info = ['info'=>$quotation];

         Mail::send(['text'=>'mail'], $info, function($message){

             $pdf = PDF::loadView('employees.quotations.edit', $quotation);

             $message->to('example@gmail.com','John Doe')->subject('Quotation');

             $message->from('from@gmail.com','The Sender');

             $message->attachData($pdf->output(), 'filename.pdf');

           });
          echo 'Email was sent!';

        }
      }

public function edit(Quotation $quotation)
    {
        return view('employees.quotations.edit', compact('quotation'));
        //return view('employees.quotations.edit')->with('quotation');

    }

.................................................. ....................

路线看起来像这样

Route::post('/quotation', 'Employee\QuotationController@store')->name('employee.quotation.store');
  Route::get('/quotation', 'Employee\QuotationController@index')->name('employee.quotation.index');
  Route::get('/quotation/create', 'Employee\QuotationController@create')->name('employee.quotation.create');
  Route::put('/quotation/{quotation}', 'Employee\QuotationController@update')->name('employee.quotation.update');
  Route::get('/quotation/{quotation}', 'Employee\QuotationController@show')->name('employee.quotation.show');
  Route::delete('/quotation/{quotation}', 'Employee\QuotationController@destroy')->name('employee.quotation.destroy');
  Route::get('/quotation/{quotation}/edit', 'Employee\QuotationController@edit')->name('employee.quotation.edit');

employee.quotations.edit.blade.php看起来像这样

@section('left-menu')

@endsection

@section('right-menu')

@endsection

@section('content')
  <h1>Update a Quotation</h1>
  <br><br>

    <form action="{{ route('employee.quotation.update',$quotation->id) }}" method="post">
      @method('PUT')
      @csrf
      <div class="form-group">
        <label for="inputJobDescription">Description</label>
        <textarea class="form-control" rows="2" id="inputQuoteDescription" name="description" placeholder="Description">{{$quotation->description}}
</textarea>
      </div>
      <div class="form-group row">
        <label for="inputQty" class="col-2 col-form-label">Qty</label>
        <div class="col-10">
          <input type="text" class="form-control" id="inputQty" name="qty" value="{{$quotation->qty}}" oninput="quotation_calculate()" onchange="quotation_calculate()">
        </div>
      </div>
      <div class="form-group row">
        <label for="inputEachPrice" class="col-2 col-form-label">Each Price</label>
        <div class="col-10">
          <input type="text" class="form-control" id="inputEachPrice" name="each_price" value="{{$quotation->each_price}}" oninput="quotation_calculate()" onchange="quotation_calculate()">
        </div>
      </div>
      <button type="submit" class="btn btn-primary">Submit</button>
    </form>
@endsection

@section('pagescript')

@stop

我在这里想念什么? 我已经将$ quotation传递给了编辑视图

为什么要使用双括号声明函数? 为什么不:

 public function update(Request $request, Quotation $quotation) { $quotation->description= $request['description']; $quotation->qty= $request['qty']; $quotation->each_price= $request['each_price']; $quotation->save(); $info = ['info'=>$quotation]; Mail::send(['text'=>'mail'], $info, function($message){ $pdf = PDF::loadView('employees.quotations.edit', $quotation); $message->to('example@gmail.com','John Doe')->subject('Quotation'); $message->from('from@gmail.com','The Sender'); $message->attachData($pdf->output(), 'filename.pdf'); }); echo 'Email was sent!'; } 

您显然没有通过路由传递$quotation变量。 您还将$quotation用作对象; 告诉我您不打算通过路线。 尝试以下代码:

public function update(Request $request, $quotation_id)
    {
      $quotation = Quotation::findOrFail($quotation_id);

      $quotation->description= $request['description'];
      $quotation->qty= $request['qty'];
      $quotation->each_price= $request['each_price'];
      $quotation->update();

     $info = ['info'=>$quotation];

     Mail::send(['text'=>'mail'], $info, function($message) use ($quotation){

         $pdf = PDF::loadView('employees.quotations.edit', $quotation);

         $message->to('example@gmail.com','John Doe')->subject('Quotation');

         $message->from('from@gmail.com','The Sender');

         $message->attachData($pdf->output(), 'filename.pdf');

       });
      echo 'Email was sent!';

    }

这应该工作。

我认为您需要将$quotation传递给闭包:

    Mail::send(['text' => 'mail'], $info, function ($message) use ($quotation) {

        $pdf = PDF::loadView('employees.quotations.edit', $quotation);

        $message->to('example@gmail.com', 'John Doe')->subject('Quotation');

        $message->from('from@gmail.com', 'The Sender');

        $message->attachData($pdf->output(), 'filename.pdf');

    });

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM