17 lines
338 B
PHP
17 lines
338 B
PHP
@extends('layout.master')
|
|
|
|
@push('plugin-styles')
|
|
{!! Html::style('/assets/plugins/dragula/dragula.min.css') !!}
|
|
@endpush
|
|
|
|
@section('content')
|
|
|
|
@endsection
|
|
|
|
@push('plugin-scripts')
|
|
{!! Html::script('/assets/plugins/dragula/dragula.min.js') !!}
|
|
@endpush
|
|
|
|
@push('custom-scripts')
|
|
{!! Html::script('/assets/js/dragula.js') !!}
|
|
@endpush |