@extends('layouts.admin') @section('content')

Listado de Post (Blog)

@include('admin.partials.alert_message')
@foreach($posts as $post) @endforeach
ID Nombre Editar Contenido Acciones
{{ $post->id }} {{ $post->name }} @foreach ($languages as $key => $value) @foreach($post->contents as $content) @if($content->language == $key) {{ $key }}   @endif @endforeach @endforeach
@endsection {{-- @section('scripts') @include('admin.partials.js-delete') @endsection --}}