@extends('adminlte::page')
@section('title_postfix', ' - Mundo')
@section('content_header')
About Gold&Rouge
Novo separador
@stop
@section('content')
| ID |
Imagem |
Ordem |
Estado |
Data |
Acções |
@foreach($histories as $history)
| {{ $history->id }} |
|
{{ $history->order }} |
{{ $history->active == 1 ? 'Ativo' : 'Inativo'}} |
{{ $history->created_at }} |
Editar
Apagar
|
@endforeach
@stop
@section('js')
@endsection