sarga/packages/Webkul/Shop/src/Http/Controllers/OrderController.php

104 lines
2.3 KiB
PHP
Raw Normal View History

2018-10-17 07:21:47 +00:00
<?php
namespace Webkul\Shop\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Webkul\Sales\Repositories\OrderRepository;
use Webkul\Sales\Repositories\InvoiceRepository;
2018-10-17 07:21:47 +00:00
use Auth;
use PDF;
2018-10-17 07:21:47 +00:00
/**
* Customer controlller for the customer basically for the tasks of customers
* which will be done after customer authenticastion.
*
* @author Prashant Singh <prashant.singh852@webkul.com>
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class OrderController extends Controller
{
/**
* Contains route related configuration
*
* @var array
*/
protected $_config;
/**
* OrderrRepository object
*
* @var array
*/
protected $order;
/**
* InvoiceRepository object
*
* @var array
*/
protected $invoice;
2018-10-17 07:21:47 +00:00
/**
* Create a new controller instance.
*
* @param Webkul\Order\Repositories\OrderRepository $order
* @param Webkul\Order\Repositories\InvoiceRepository $invoice
2018-10-17 07:21:47 +00:00
* @return void
*/
public function __construct(
OrderRepository $order,
InvoiceRepository $invoice
)
2018-10-17 07:21:47 +00:00
{
$this->middleware('customer');
$this->_config = request('_config');
$this->order = $order;
$this->invoice = $invoice;
2018-10-17 07:21:47 +00:00
}
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
2019-02-20 13:41:46 +00:00
public function index()
{
2018-10-17 07:21:47 +00:00
$orders = $this->order->findWhere([
'customer_id' => auth()->guard('customer')->user()->id
]);
return view($this->_config['view'], compact('orders'));
}
/**
* Show the view for the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function view($id)
{
$order = $this->order->find($id);
return view($this->_config['view'], compact('order'));
}
/**
* Print and download the for the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function print($id)
{
$invoice = $this->invoice->find($id);
$pdf = PDF::loadView('shop::customers.account.orders.pdf', compact('invoice'))->setPaper('a4');
return $pdf->download('invoice-' . $invoice->created_at->format('d-m-Y') . '.pdf');
}
2018-10-17 07:21:47 +00:00
}