edit static pages in backend
This commit is contained in:
parent
e771c4921f
commit
783ac823ba
59 changed files with 1644 additions and 761 deletions
26
app/Events/Pages/PageUpdated.php
Normal file
26
app/Events/Pages/PageUpdated.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
namespace App\Events\Pages;
|
||||
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
/**
|
||||
* Class PageUpdated.
|
||||
*/
|
||||
class PageUpdated
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
/**
|
||||
* @var
|
||||
*/
|
||||
public $page;
|
||||
|
||||
/**
|
||||
* @param $page
|
||||
*/
|
||||
public function __construct($page)
|
||||
{
|
||||
$this->page = $page;
|
||||
}
|
||||
}
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue