PHP code example of mrnewport / laravel-docsign

1. Go to this page and download the library: Download mrnewport/laravel-docsign library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mrnewport / laravel-docsign example snippets


'pdf_renderer' => 'dompdf', // or 'wkhtml' or a custom key
'pdf_options' => [
  'paper' => 'A4',
  'orientation' => 'portrait'
],

'template_engine' => 'blade', // or 'twig' or a custom key

'signature' => [
  'default' => 'local',
  'providers' => [
    'local' => [...],
    'docusign' => [...],
    'hellosign' => [...]
  ],
],

'storage_disk' => 'local'

use MrNewport\LaravelDocSign\Models\Document;

$document = Document::create([
    'title' => 'NDA Example',
    'data' => [
      '_template' => 'docsign::nda', 
      'partyA' => 'Company X',
      'partyB' => 'John Doe'
    ]
]);

use MrNewport\LaravelDocSign\Facades\DocSign;

$path = DocSign::generate($document);
// merges template -> renders PDF -> saves to disk -> sets doc.status='draft'

$signers = [
  ['name'=>'John','email'=>'[email protected]'],
  ['name'=>'Jane','email'=>'[email protected]']
];

$result = DocSign::requestSignature($document, $signers);
// sets doc.status='signing', returns array e.g. ['url'=>'...']

   $this->app->bind('docsign.pdf_renderer.mycustom', function($app){
       return new \App\Pdf\MyCustomRenderer();
   });
   

   $this->app->bind('docsign.template_engine.markdown', function($app){
       return new \App\Template\MarkdownEngine();
   });
   
bash
   php artisan vendor:publish --provider="MrNewport\LaravelDocSign\Providers\DocSignServiceProvider" --tag=docsign-config
   
bash
   php artisan migrate