@extends('backend.layouts.master')
@section('style')
@include('backend.layouts.datatable.style')
@endsection
@section('content')
| SL |
Action |
Icon |
Name |
Price |
Online Status |
Status |
Description |
@foreach ($infos as $value)
| {{ $loop->iteration }} |
|
|
{{ $value->name }} |
{{ $value->price }} |
@if ($value->online)
Online
@else
On Place
@endif
|
@if ($value->status)
Active
@else
Inactive
@endif
|
{{ $value->description }} |
@endforeach
@endsection
@section('script')
@include('backend.layouts.datatable.script')
@endsection