@extends('layouts.default') @section('styles') I see the issue. Looking at your datatable initialization code and the loader implementation, I can help you fix this. Let's modify the code to properly show the loader. First, let's add this CSS just after your existing DataTables CSS import: htmlCopy@section('styles') @endsection @section('content')
@if (Session::get('flash_message'))
{{ Session::get('flash_message') }}
@endif
Import Orders
{{ Form::open(['route'=>['orders.import'],'type'=>'POST', 'files'=>true]) }}
{{ Form::submit('Import',['class'=>'btn btn-primary']) }} {{ Form::close() }}
{{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{--@foreach($orders as $order)--}} {{--@foreach($order->items as $item)--}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{----}} {{--@endforeach--}} {{--@endforeach--}}
Supplier Supplier Part # PO # Partslink Part Name Part Details PO # Quantity Company Customer Imported Street City State Zip/Postal Phone Confirmation Status Message Status Delete
--}} {{----}} {{--{{ $order->supplier }}{{ $order->po }}{{ $item->partslink }}{{ $item->quantity }}{{ $order->company }}{{ $order->customer_name }}{{ $order->created_at }}{{ $order->state }}{{ $order->confirmation }}{{ ['waiting','success','error'][$order->status] }}{{ $order->status_message }}--}} {{--{{ Form::select('status',['waiting','success','error'],$order->status,['class'=>'form-control','onchange'=>"location = 'orders/status/".$order->id."/'+this.options[this.selectedIndex].value;"]) }}--}} {{--{{ Html::linkRoute('orders.delete', 'Delete', array($order->id)) }}--}} {{--
{{-- {{ Html::link('/orders/export/','Export',['class'=>'btn btn-primary']) }}--}}
@endsection @section('scripts') {{--{!! Html::script('assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.js') !!}--}} @endsection