Big update for category controller - for admin panel
This commit is contained in:
@@ -1,6 +1,23 @@
|
||||
@extends('layout.app')
|
||||
@section('title', 'Dashboard')
|
||||
|
||||
@section('main')
|
||||
@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')
|
||||
@if(\Session::has('message'))
|
||||
<span>{{ \Session::get('message') }}</span>
|
||||
@endif
|
||||
@include('dashboard.projects.list')
|
||||
@include('dashboard.categories.list')
|
||||
@endsection
|
||||
|
Reference in New Issue
Block a user