@extends('backend.layouts.master') @section('admin-title') All Entries - List @endsection @section('admin-content')

Form Data List

Add New Entry
@if(session('success'))
{{ session('success') }}
@endif
@foreach($forms as $key => $item) @endforeach
SL Image Page (Header) Name Short Text Year Price Action
{{ $key + 1 }} @if($item->image) img @else No Image @endif {{ str_replace('_', ' ', $item->header_name) }} {{ $item->name }} {{ Str::limit($item->text, 20) }} {{ $item->year_text }} {{ $item->price }} Edit
@csrf @method('DELETE')
@if($forms->isEmpty())

No data found!

@endif
@endsection