@extends('admin.layouts.simple.master') @section('title', 'Courses') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Blogs

@endsection @section('breadcrumb-items') @endsection @section('content')
Blogs
Add Blogs
@if(Session::has('message')) @endif
@foreach($blogs as $key => $blog) {{-- --}} @endforeach
# Image Name Slug Category Tags Date Status Action
{{ ($blogs->currentPage() - 1) * $blogs->perPage() + $loop->iteration }} {{ $blog->name }} {{ $blog->slug }} {{ $blog->category->name }} @foreach ($blog->tags as $key => $tag) {{$tag->getTranslation('name', '')}}{{ !$loop->last ? ',' : '' }} @endforeach {!! ($blog->short_description != null) ? $blog->short_description : '--' !!}{{ $blog->getDate() }} {{ ($blog->status == 1) ? 'Active' : 'Non Active' }}
@endsection @section('script') @endsection