@extends('admin.layouts.master') @section('title', $title) @section('content')
| {{ __('dashboard.no') }} | {{ __('dashboard.photo') }} | {{ __('dashboard.name') }} | {{ __('dashboard.designation') }} | {{ __('dashboard.organization') }} | {{ __('dashboard.status') }} | {{ __('dashboard.action') }} |
|---|---|---|---|---|---|---|
| {{ $key + 1 }} |
@if(is_file('uploads/'.$path.'/'.$row->image_path))
|
{!! str_limit(strip_tags($row->title), 50, ' ...') !!} | {{ $row->designation }} | {{ $row->organization }} | @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif | @include($view.'.show') @include($view.'.edit') @include('admin.inc.delete') |