App\Http\Controllers\InvoicesController::show PHP Method

show() public method

Display the specified resource.
public show ( integer $id ) : Illuminate\Http\Response
$id integer
return Illuminate\Http\Response
    public function show($id)
    {
        return view('invoices.show')->withInvoice($this->invoices->find($id));
    }