laravel5.5+adminlte搭建自己的后台首先下载最新的laravelcomposer global require "laravel/installer"然后创建一个应用laravel new blog下载adminlte模板https://github.com/almasaeed2010/AdminLTE/releases把下载过来的模板bower_components,build,dist三个目录放到laravel目录下的public目录下面在resources/views下创建common目录 分别创建footer.blade.php header.blader.php,slidebar.phpheader.blade.php如下  
    
    
      
      
通      
      
奕通信息        
    
      
      
        
Toggle navigation        
        
        
            
        
          
          
            
              
              
                                
          
            
              
              
                                           
          
            
              
              
                                           
          
            
              
              
{ {auth()->user()->uname}}                        
              
              
                
                

                  { {auth()->user()->name}}                

                            
              
                
                  
                     
{ {auth()->user()->email}}                                    
                    
{ {auth()->user()->name}}                                                  
                            
              
                
                  
个人信息                                
                  
退出                                                              
          
  •             
              
  •                     slidebar.blade.php 
        
        
          
          
            
              
                    
              

    Alexander Pierce

              
     Online                    
          
            
              
              
                    
                                                      
          
          
            
    MAIN NAVIGATION        
              
                
     
    Dashboard            
                  
                                    
                
     Dashboard v1            
  •  Dashboard v2
  •                           
              
                
                
    Layout Options            
                  
    4                                
                
  •  Top Navigation
  •             
  •  Boxed
  •             
  •  Fixed
  •             
  •  Collapsed Sidebar
  •                           
  •           
                
     
    Widgets            
                  
    new                              
  •         
              
                
                
    Charts            
                  
                                    
                
  •  ChartJS
  •             
  •  Morris
  •             
  •  Flot
  •             
  •  Inline charts
  •                           
              
                
                
    UI Elements            
                  
                                    
                
  •  General
  •             
  •  Icons
  •             
  •  Buttons
  •             
  •  Sliders
  •             
  •  Timeline
  •             
  •  Modals
  •                           
              
                
     
    Forms            
                  
                                    
                
  •  General Elements
  •             
  •  Advanced Elements
  •             
  •  Editors
  •                           
              
                
     
    Tables            
                  
                                    
                
  •  Simple tables
  •             
  •  Data tables
  •                           
  •           
                
     
    Calendar            
                  
    3              
    17                              
  •         
  •           
                
     
    Mailbox            
                  
    12              
    16              
    5                              
  •         
              
                
     
    Examples            
                  
                                    
                
  •  Invoice
  •             
  •  Profile
  •             
  •  Login
  •             
  •  Register
  •             
  •  Lockscreen
  •             
  •  404 Error
  •             
  •  500 Error
  •             
  •  Blank Page
  •             
  •  Pace Page
  •                           
              
                
     
    Multilevel            
                  
                                    
                
  •  Level One
  •             
                  
     Level One                
                      
                                                
                    
  •  Level Two
  •                 
                      
     Level Two                    
                          
                                                            
                        
  •  Level Three
  •                     
  •  Level Three
  •                                                                         
  •  Level One
  •                           
  •  
    Documentation
  •         
    LABELS        
  •  
    Important
  •         
  •  
    Warning
  •         
  •  
    Information
  •               
      footer.blade.php
        
          
    Version 2.4.0        
    Copyright © 2014-2016 
    小谢博客.
     All rights    reserved.  然后在创建一个默认的模板 app.blade.php   在/views/layouts//app.blade.php  
      
      
    AdminLTE 2 | 404 Page not found  
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    @include('common.header')
    @include('common.sidebar')
        
        
            

                { { $page_title or "Page Title" }}            { { $page_description or null }}        

            
            
                
  •  Level
  •             
    Here                
        
            
            @yield('content')    
    @include('common.footer')  
      
            
        
          
          
                       
                
            
      
      
    到此为止就搭建完成了;