Code Monkey home page Code Monkey logo

Comments (1)

Clinton594 avatar Clinton594 commented on June 10, 2024

`
// Initialize response class
$Response = new Response;
$response = $Response::get();

// Get request parameters for pagination
$page = (int) $request->input('page') ?: 1;
$limit = (int) $request->input('limit') ?: 1;

try {
  $logger  = new LaravelLogViewer;

  // Get all error logs
  $data = $logger->all();

  // Extract the only the keys that i need
  $data = array_map(fn ($error) => array_extract($error, ['level',  'level_class', 'level_img', 'date', 'text'], false), $data);

  // Filter by error type
  if ($request->level) {
    $data = array_filter($data, fn ($error) => $error['level'] === $request->level);
  }

  // Search the error
  if ($request->search) {
    $data = array_filter($data, fn ($error) => stripos($error['text'], $request->search) > -1);
  }

  // reindex the array keys after filtering
  $data = array_values($data);

  // Build pagination data on it
  $files = collect($data);
  $slice = $files->slice(($page - 1) * $limit, $limit);
  $paginator = new \Illuminate\Pagination\LengthAwarePaginator($slice, $files->count(), $limit);

  // Build response
  $response = $Response::set(['data' => $paginator], true);
  //code...
} catch (\Throwable $th) {
  $response = $Response::set(['message' => $th->getMessage(), 'code' => getExceptionCode($th)]);
}
return $response;`

from laravel-log-viewer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.