@extends('admin.layout.app')
@section('heading', 'Posts')
@section('button')
@endsection
@section('main_content')
| SL |
Photo |
Heading |
Description |
Action |
@foreach($posts as $item)
| {{ $loop->iteration }} |
|
{{ substr($item->heading, 0, '45') }}... |
{{ substr($item->description, 0, '50') }}... |
Edit
Delete
|
@endforeach
@endsection