File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/app/View/Components/FlashTicketBuilder/Section.php
<?php
namespace App\View\Components\FlashTicketBuilder;
use Illuminate\View\Component;
class Section extends Component
{
public $debug;
public $sections;
/**
* Create a new component instance.
*
* @return void
*/
public function __construct($debug = false,$sections = null)
{
$this->debug = $debug;
$this->sections = $sections;
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\View\View|string
*/
public function render()
{
return view('components.flash-ticket-builder.section');
}
}