@extends('admin.layouts.app')
@section('content')
| # |
Image |
Status |
Actions |
@if (count($tickers) > 0)
@foreach ($tickers as $index => $ticker)
| {{ $index + 1 }} |
@if (empty($ticker->image))
@else
@endif
|
@if ($ticker->status == 1)
Active
@else
Dective
@endif
|
Edit
|
@endforeach
@else
| Records Not Found |
@endif
@endsection