@extends('admin.layouts.master')
@section('title')
special products
@endsection
@section('css')
@endsection
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
name |
Action |
@foreach($data as $row)
{{ $row->name() }}
|
|
@include('admin.special_products.edit')
@include('admin.special_products.deleted')
@endforeach
{{$data->links()}}
@include('admin.special_products.create')
@endsection
@section('js')
@endsection