commit
74c4230b97
|
|
@ -13,7 +13,7 @@ use Webkul\Core\Repositories\SliderRepository as Sliders;
|
|||
* @author Prashant Singh <prashant.singh852@webkul.com> @prashant-webkul
|
||||
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||||
*/
|
||||
class HomeController extends controller
|
||||
class HomeController extends Controller
|
||||
{
|
||||
protected $_config;
|
||||
protected $sliders;
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
<div>
|
||||
@foreach ($actions as $action)
|
||||
<a href="{{ route($action['route'], $record->{$index}) }}">
|
||||
<span class="{{ $action['icon'] }}" onclick="return confirm('{{ __('ui::app.datagrid.click_on_action') }}')"></span>
|
||||
<span class="{{ $action['icon'] }}" @if(strtolower($action['type']) == "delete") onclick="return confirm('{{ __('ui::app.datagrid.click_on_action') }}')" @endif></span>
|
||||
</a>
|
||||
@endforeach
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
<option value="gt">{{ __('ui::app.datagrid.greater') }}</option>
|
||||
<option value="lt">{{ __('ui::app.datagrid.less') }}</option>
|
||||
<option value="gte">{{ __('ui::app.datagrid.greatere') }}</option>
|
||||
<option value="lte">{{ __('ui::app.datagrid.equalse') }}</option>
|
||||
<option value="lte">{{ __('ui::app.datagrid.lesse') }}</option>
|
||||
{{-- <option value="btw">{{ __('ui::app.datagrid.between') }}</option> --}}
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue