In primul rand, functiile trebuie create in directorul "controllers"?
Cum afisez rezultatul returnat de o functie?
Pentru a accesa o functie, trebuie inclus fisierul? Sau la afisare se pune calea catre controller?
Am facut asa, dar nu stiu cum sa testez
Cod: Selectaţi tot
<?php
class ArticoleController extends BaseController {
public function nr_articole()
{
$numar = DB::table('articole')->count();
retun $numar;
}
}
Am rezolvat
Cod: Selectaţi tot
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\DB;
class ArticoleController extends Controller {
public static function nr_articole()
{
$numar = DB::table('articole')->count();
return $numar;
}
}
Cod: Selectaţi tot
@extends('layout.master')
<?php
use App\Http\Controllers\ArticoleController;
?>
{{ ArticoleController::nr_articole() }}
@section('header')
@include('layout.index.header')
@include('layout.index.hero')
@include('layout.index.intro')
@include('layout.index.divider')
@include('layout.index.newsletter')
@stop
@section('footer')
@include('layout.index.footer')
@stop