31 lines
655 B
PHP
Executable file
31 lines
655 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Http\Controllers\IQ;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Request;
|
|
use IqContent\LaravelFilemanager\Controllers\LfmController;
|
|
|
|
class ContentAssetController extends LfmController
|
|
{
|
|
|
|
|
|
public function index()
|
|
{
|
|
$data = [
|
|
'models' => [],
|
|
'lfm_helper' => $this->helper,
|
|
'modal' => false,
|
|
];
|
|
return view('iq.content.assets.index', $data);
|
|
}
|
|
|
|
public function modal(){
|
|
$data = [
|
|
'models' => [],
|
|
'lfm_helper' => $this->helper,
|
|
'modal' => true,
|
|
];
|
|
return view('iq.content.assets.body', $data);
|
|
}
|
|
}
|