@extends('company.layouts.main') @section('content')
Back

View Model Solution files

@if(Session::has('success'))
{{ Session::get('success') }}
@endif
ID Title Description File Action
@endsection @section('script') $(function () { var table = $('#datatable').DataTable({ processing: true, serverSide: true, responsive:true, order:['0','desc'], ajax: "{{ route('view.modelSolution',$virtualExpWhatWillYouLearnId) }}", "columnDefs": [ { "targets": [ 0 ], "visible": false, "searchable": true }, ], "columns": [ { data: 'id' }, { data: 'file_title' }, { data: 'file_description' }, {data: 'file', name: 'file', orderable: false, searchable: false}, {data: 'action', name: 'action', orderable: false, searchable: false}, ] }); setTimeout(function() { $('#successMessage').fadeOut('fast'); }, 1000); }); @endsection