@extends('admin.layouts.master') @section('title') products @endsection @section('css') @endsection @section('content')
Add new
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($data as $row) @endforeach
Images name slug Description SKU Category Brand status Action
{{ $row->name() }} {{ $row->slug }}

Description

SKU

Ctegory

Brand

{{ $row->is_published ? 'Published' : 'Unpublished' }}
{{$data->links()}}
@endsection @section('js') @endsection