-1

I have a laravel project using admin lte theme. This Amin lte has a preloader with some animations. I am currently facing one problem, this preloader only preloads after the html shows. Normally with pure html and css, I use a script tp make the loading icons and show the page only after it loads everything. But for some reason using admin lte, he shows the animation, but only after almost 1 second during this second, it shows the pure html without the css, like really fast. How can I make this preload come first or then I can disable and make my own, but my pages don“t have a standard html, they are like this:

@extends('adminlte::page')

@section('title', 'Fire Hazard')

@section('content')
marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Filipe Cruz
  • 81
  • 1
  • 10

1 Answers1

0

This usualy happens when you put html outside the content area, try to put everything inside the

''' @section('content') @endsection '''

Filipe Cruz
  • 81
  • 1
  • 10