PHPackages                             acr/acr\_blog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. acr/acr\_blog

ActiveLaravel[Framework](/categories/framework)

acr/acr\_blog
=============

Blog

027HTML

Since Mar 24Pushed 8y ago1 watchersCompare

[ Source](https://github.com/rdtvaacar/acr_blog)[ Packagist](https://packagist.org/packages/acr/acr_blog)[ RSS](/packages/acr-acr-blog/feed)WikiDiscussions blog Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

LARAVEL - Acr\_blog
===================

[](#laravel---acr_blog)

Gerekli
-------

[](#gerekli)

[http://image.intervention.io/getting\_started/installation](http://image.intervention.io/getting_started/installation)composer require acr/acr\_fl

Kurulum:
--------

[](#kurulum)

#### composer json :

[](#composer-json-)

```
"acr/acr_blog": "dev-blog"

```

#### Providers

[](#providers)

```
 Acr\Acr_blog\Acr_blogServiceProvider::class,

```

#### Aliases

[](#aliases)

```
'Acr_blog' => \Acr\Acr_blog\Facades\Acr_blog::class,

```

#### public\_html/acr\_blog/blog.blade.php

[](#public_htmlacr_blogblogbladephp)

```
@extends('index')  // default extends page
@section('acr_index') // default yield
    @yield('acr_blog') // blog yield dont edit
@stop
```

```
 {!! AcrFile::css() !!}
```

CSS dosyalarını yükler.

```
PHP
{!! AcrFile::form() !!}
```

Formu yükler

```
PHP
$acr_file_id = Acr_blog::acr_file_id();
$fl_data = [
    'acr_file_id' => $acr_file_id,
]
```

```
{!! Acr_blog::get_file($acr_file_id, $file_name, $loc = '') !!}
```

Dosyayı basar

```
{!! Acr_blog::files_list($acr_file_id) !!}
```

Dosyaları Listeler

```
{!! Acr_blog::files_galery($acr_file_id) !!}
```

Dosyaları galeri şeklinde Listeler

acr\_file\_id gönderimi şarttır, ek data gönderilebilir. İlişkili tablodan gelmeli örneğin ürünler için kullanacaksanız urun tablonuzda acr\_file\_id stunu olmalı, acr\_file\_id değişkeni null ise : $acr\_file\_id = Acr\_blog::acr\_file\_id() yeni bir acr\_file\_id oluşturmanız ve ürünler tablosundaki acr\_file\_id stununa eklemeniz beklenmektedir.

```
PHP
{!! AcrFile::js($fl_data) !!}
```

Java script dosylarını yükler.

```
CREATE TABLE `acr_files` (
  `id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `file_dir` varchar(50) COLLATE utf8_turkish_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci;

CREATE TABLE `acr_files_childs` (
  `id` int(11) NOT NULL,
  `acr_file_id` int(11) DEFAULT NULL,
  `old_id` int(11) DEFAULT NULL,
  `sira` int(11) NOT NULL DEFAULT '10',
  `goster` tinyint(4) NOT NULL DEFAULT '1' COMMENT '0 gösterilmiyor 1 gösteriliyor',
  `file_name` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
  `file_name_org` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
  `file_size` varchar(25) COLLATE utf8_turkish_ci DEFAULT NULL,
  `file_type` varchar(10) COLLATE utf8_turkish_ci DEFAULT NULL,
  `mime` varchar(200) COLLATE utf8_turkish_ci DEFAULT NULL,
  `download` int(11) DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci;

--
-- Dökümü yapılmış tablolar için indeksler
--

--
-- Tablo için indeksler `acr_files`
--
ALTER TABLE `acr_files`
  ADD PRIMARY KEY (`id`);

--
-- Tablo için indeksler `acr_files_childs`
--
ALTER TABLE `acr_files_childs`
  ADD PRIMARY KEY (`id`);

--
-- Dökümü yapılmış tablolar için AUTO_INCREMENT değeri
--

--
-- Tablo için AUTO_INCREMENT değeri `acr_files`
--
ALTER TABLE `acr_files`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1231;

--
-- Tablo için AUTO_INCREMENT değeri `acr_files_childs`
--
ALTER TABLE `acr_files_childs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=920;
COMMIT;
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/286fe1af829a5e5b5420cc161756595145eec530dce86314a57dbb883d44f5cc?d=identicon)[rdtvaacar](/maintainers/rdtvaacar)

---

Top Contributors

[![rdtvaacar](https://avatars.githubusercontent.com/u/3095828?v=4)](https://github.com/rdtvaacar "rdtvaacar (12 commits)")

### Embed Badge

![Health badge](/badges/acr-acr-blog/health.svg)

```
[![Health](https://phpackages.com/badges/acr-acr-blog/health.svg)](https://phpackages.com/packages/acr-acr-blog)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k104.3M836](/packages/laravel-socialite)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k38.6M289](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
