add User, Mail verify, rights, Change Mail, fewo invoice PDF

This commit is contained in:
Kevin Adametz 2019-04-16 19:47:33 +02:00
parent 26ecb09cdc
commit 7abfe3f700
44 changed files with 3041 additions and 1125 deletions

View file

@ -3,7 +3,7 @@
/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.6.39 on 2019-03-21 14:09:21.
* Generated for Laravel 5.6.39 on 2019-04-16 17:45:52.
*
* This file should not be included in your code, only analyzed by your IDE!
*
@ -17404,6 +17404,163 @@ namespace Yajra\DataTables\Facades {
}
namespace Barryvdh\DomPDF {
/**
*
*
*/
class Facade {
/**
* Get the DomPDF instance
*
* @return \Barryvdh\DomPDF\Dompdf
* @static
*/
public static function getDomPDF()
{
return \Barryvdh\DomPDF\PDF::getDomPDF();
}
/**
* Set the paper size (default A4)
*
* @param string $paper
* @param string $orientation
* @return $this
* @static
*/
public static function setPaper($paper, $orientation = 'portrait')
{
return \Barryvdh\DomPDF\PDF::setPaper($paper, $orientation);
}
/**
* Show or hide warnings
*
* @param bool $warnings
* @return $this
* @static
*/
public static function setWarnings($warnings)
{
return \Barryvdh\DomPDF\PDF::setWarnings($warnings);
}
/**
* Load a HTML string
*
* @param string $string
* @param string $encoding Not used yet
* @return static
* @static
*/
public static function loadHTML($string, $encoding = null)
{
return \Barryvdh\DomPDF\PDF::loadHTML($string, $encoding);
}
/**
* Load a HTML file
*
* @param string $file
* @return static
* @static
*/
public static function loadFile($file)
{
return \Barryvdh\DomPDF\PDF::loadFile($file);
}
/**
* Load a View and convert to HTML
*
* @param string $view
* @param array $data
* @param array $mergeData
* @param string $encoding Not used yet
* @return static
* @static
*/
public static function loadView($view, $data = array(), $mergeData = array(), $encoding = null)
{
return \Barryvdh\DomPDF\PDF::loadView($view, $data, $mergeData, $encoding);
}
/**
* Set/Change an option in DomPdf
*
* @param array $options
* @return static
* @static
*/
public static function setOptions($options)
{
return \Barryvdh\DomPDF\PDF::setOptions($options);
}
/**
* Output the PDF as a string.
*
* @return string The rendered PDF as string
* @static
*/
public static function output()
{
return \Barryvdh\DomPDF\PDF::output();
}
/**
* Save the PDF to a file
*
* @param $filename
* @return static
* @static
*/
public static function save($filename)
{
return \Barryvdh\DomPDF\PDF::save($filename);
}
/**
* Make the PDF downloadable by the user
*
* @param string $filename
* @return \Illuminate\Http\Response
* @static
*/
public static function download($filename = 'document.pdf')
{
return \Barryvdh\DomPDF\PDF::download($filename);
}
/**
* Return a response with the PDF to show in the browser
*
* @param string $filename
* @return \Illuminate\Http\Response
* @static
*/
public static function stream($filename = 'document.pdf')
{
return \Barryvdh\DomPDF\PDF::stream($filename);
}
/**
*
*
* @static
*/
public static function setEncryption($password)
{
return \Barryvdh\DomPDF\PDF::setEncryption($password);
}
}
}
namespace Laracasts\Flash {
/**
@ -19876,6 +20033,8 @@ namespace {
class DataTables extends \Yajra\DataTables\Facades\DataTables {}
class PDF extends \Barryvdh\DomPDF\Facade {}
class Flash extends \Laracasts\Flash\Flash {}
class Html extends \Collective\Html\HtmlFacade {}