@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ $title }} {{ __('dashboard.list') }}

{{ __('dashboard.prefer_cells', ['cells' => 3]) }}
@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.no') }} {{ __('dashboard.title') }} {{ __('dashboard.price') }} {{ __('dashboard.duration') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} {!! str_limit(strip_tags($row->title), 50, ' ...') !!} {{ $row->price }} @if(!empty($row->old_price)) / {{ $row->old_price }} @endif {{ $row->duration }} @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @include('admin.inc.delete')
@endsection