@extends('adminlte::page')
@section('title_postfix', ' - Categorias da Galeria')
@section('content_header')
Categorias da Galeria
Nova Categoria
@stop
@section('content')
| Id |
Nome |
Pasta |
|
@foreach($gallery_category as $category)
| {{ $category['id'] }} |
{{ $category['name'] }} |
{{ $category['folder'] }} |
Editar
Apagar
|
@endforeach
@if(session('message'))
{{ session('message') }}
@endif
@stop
@section('css')
@endsection
@section('js')
@endsection