27 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layout.app')
 | |
| @section('title', 'Dashboard')
 | |
| 
 | |
| @push('styles')
 | |
| <style>
 | |
|     #main {
 | |
|         display: grid;
 | |
|         grid-template-columns: repeat(3, 1fr);
 | |
|         column-gap: 1em;
 | |
|     }
 | |
|     #main .projects {
 | |
|         grid-column: 1 / 3;
 | |
|     }
 | |
| </style>
 | |
| @endpush
 | |
| 
 | |
| @section('main')
 | |
| <header>
 | |
|     <h1>Dashboard</h1>
 | |
| </header>
 | |
| @if(\Session::has('message'))
 | |
|     <span>{{ \Session::get('message') }}</span>
 | |
| @endif
 | |
| @include('dashboard.projects.list')
 | |
| @include('dashboard.aside')
 | |
| @endsection
 |