@extends('admin.layouts.master')
@section('main_content')
@include('admin.layouts.nav')
@include('admin.layouts.sidebar')
| {{ __('SL') }} |
{{ __('Photo') }} |
{{ __('Title') }} |
{{ __('Slug') }} |
{{ __('Category') }} |
{{ __('Created At') }} |
{{ __('Action') }} |
@foreach($posts as $post)
| {{ $loop->iteration }} |
|
{{ $post->title }} |
{{ $post->slug }} |
{{ $post->post_category->name }} |
{{ $post->created_at }} |
|
@endforeach
@endsection