@extends('layouts.app')
@section('js')
{{-- --}}
@endsection
@section('content')
@foreach( $articles as $article)
@if($article->used == 1)
@else
@endif
{{ strlen($article->concept) > 100 ? substr($article->concept, 0, 100).' ...' : $article->concept}}
@endforeach
@endsection