@extends('admin.layout.app') {{-- makes everything from admin.app appear here --}}
@section('heading', ' Portfolio Categories')
@section('rightside_button')
Add New
@endsection
@section('main_content')
SL |
Category Name |
Action |
{{-- Each iteration prints one row () in the table. --}}
@foreach ($all_data as $item)
{{ $loop->iteration }} | {{-- helps numbering 1,2,3 dynamically --}}
{{ $item->category_name }} |
Edit
Delete
|
@endforeach
@endsection